You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even though it turns out the millis() function is actually really efficient, we can do even better! Redefine c_time as an alias to systick_uptime_millis and then we never need to update the value again.
redefine c_time as alias for systick_uptime_millis
remove all calls to millis()
validate that everything still works
The text was updated successfully, but these errors were encountered:
c_time now reports the value of systick_uptime_millis, which means we
should _never_ need to update c_time any more! It should always contain
the most up to date value. This will probably have little to no actual
impact, but in theory it means that all our timing operations should be
much faster.
addresses #36
NOTE: this needs validation!
Even though it turns out the
millis()
function is actually really efficient, we can do even better! Redefine c_time as an alias to systick_uptime_millis and then we never need to update the value again.The text was updated successfully, but these errors were encountered: