We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bef4fc commit 8dcbd08Copy full SHA for 8dcbd08
cores/arduino/time.cpp
@@ -56,7 +56,7 @@ unsigned long micros() {
56
uint32_t const down_counts = main_timer.get_counter();
57
if (_timer_get_underflow_bit() && (down_counts > (_timer_period / 2)))
58
{
59
- // the counter wrapped arround just before it was read
+ // the counter wrapped around just before it was read
60
++ms;
61
}
62
NVIC_EnableIRQ(main_timer.get_cfg()->cycle_end_irq);
0 commit comments