We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
log
Analyze the time it takes to perform the calculation and the size of the generated binary (it will probably be smaller).
If it is not too slow even without a FPU, remove the table and use math's log().
log()
Log time with:
void sys_tick_handler(void) { + float tcompute; + clock_tick(); + stopwatch_start(); update_distance_readings(); + tcompute = stopwatch_stop(); update_gyro_readings(); update_encoder_readings(); motor_control(); - log_data(); + LOG_DATA("[%f]", tcompute); }
The text was updated successfully, but these errors were encountered:
Peque
No branches or pull requests
Analyze the time it takes to perform the calculation and the size of the generated binary (it will probably be smaller).
If it is not too slow even without a FPU, remove the table and use math's
log()
.Log time with:
The text was updated successfully, but these errors were encountered: