Unify behaviour of wait on AVR (#14025)

This commit is contained in:
Joel Challis 2021-08-16 17:28:12 +01:00 committed by GitHub
parent 4818debcd0
commit 2bc8215ce5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,8 +17,26 @@
#include <util/delay.h> #include <util/delay.h>
#define wait_ms(ms) _delay_ms(ms) #define wait_ms(ms) \
#define wait_us(us) _delay_us(us) do { \
if (__builtin_constant_p(ms)) { \
_delay_ms(ms); \
} else { \
for (uint16_t i = ms; i > 0; i--) { \
_delay_ms(1); \
} \
} \
} while (0)
#define wait_us(us) \
do { \
if (__builtin_constant_p(us)) { \
_delay_us(us); \
} else { \
for (uint16_t i = us; i > 0; i--) { \
_delay_us(1); \
} \
} \
} while (0)
/* The AVR series GPIOs have a one clock read delay for changes in the digital input signal. /* The AVR series GPIOs have a one clock read delay for changes in the digital input signal.
* But here's more margin to make it two clocks. */ * But here's more margin to make it two clocks. */