Browse Source

Unify behaviour of wait on AVR (#14025)

pull/14039/head
Joel Challis 2 years ago
committed by GitHub
parent
commit
2bc8215ce5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 2 deletions
  1. +20
    -2
      tmk_core/common/avr/_wait.h

+ 20
- 2
tmk_core/common/avr/_wait.h View File

@ -17,8 +17,26 @@
#include <util/delay.h>
#define wait_ms(ms) _delay_ms(ms)
#define wait_us(us) _delay_us(us)
#define wait_ms(ms) \
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.
* But here's more margin to make it two clocks. */


Loading…
Cancel
Save