Skip to content

Commit

Permalink
Merge pull request #801 from hmeijdam/v2.0.0-devThis-is-the-head-subm…
Browse files Browse the repository at this point in the history
…it-PRs-against-this

Update wiring.c
  • Loading branch information
SpenceKonde committed Sep 3, 2023
2 parents ba36ee3 + 9ad322f commit 0780e0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avr/cores/tiny/wiring.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ void yield(void) __attribute__ ((weak, alias("__empty")));
if (__builtin_constant_p(ms)) {
_delay_ms(ms); //if its a compile time known constant use the avrlibc version
} else {
_delay(ms)
_delay(ms);
}
}
#endif
Expand Down

0 comments on commit 0780e0c

Please sign in to comment.