Added missing bracket from PR

This commit is contained in:
Benjamin Vedder 2021-10-31 09:35:52 +01:00
parent 09bd14072c
commit 5304872a92
1 changed files with 1 additions and 1 deletions

View File

@ -4630,7 +4630,7 @@ static void terminal_tmp(int argc, const char **argv) {
omega_est /= samples;
res_est /= samples;
commands_printf("RPM: %.2f, EST: %.2f", (double)mcpwm_foc_get_rpm(), (double)(RADPS2RPM_f(omega_est));
commands_printf("RPM: %.2f, EST: %.2f", (double)mcpwm_foc_get_rpm(), (double)(RADPS2RPM_f(omega_est)));
commands_printf("R: %.2f, EST: %.2f", (double)(R * 1000.0), (double)(res_est * 1000.0));
}