mirror of
https://github.com/google/pebble.git
synced 2025-05-19 01:44:53 +00:00
spelling: variable
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
d37fe946e1
commit
c1e8ef32bd
5 changed files with 5 additions and 5 deletions
|
@ -39,7 +39,7 @@ void delay_us(uint32_t us) {
|
|||
|
||||
void delay_ms(uint32_t millis) {
|
||||
// delay_us(millis*1000) is not used because a long delay could easily
|
||||
// overflow the veriable. Without the outer loop, a delay of even five
|
||||
// overflow the variable. Without the outer loop, a delay of even five
|
||||
// seconds would overflow.
|
||||
while (millis--) {
|
||||
delay_us(1000);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue