2015-04-09 18:32:04 +02:00
|
|
|
#ifndef WAIT_H
|
|
|
|
#define WAIT_H
|
|
|
|
|
2017-07-02 00:06:39 +02:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__AVR__)
|
2019-08-30 20:19:03 +02:00
|
|
|
# include <util/delay.h>
|
|
|
|
# define wait_ms(ms) _delay_ms(ms)
|
|
|
|
# define wait_us(us) _delay_us(us)
|
2017-09-30 01:17:30 +02:00
|
|
|
#elif defined PROTOCOL_CHIBIOS
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "ch.h"
|
|
|
|
# define wait_ms(ms) \
|
|
|
|
do { \
|
|
|
|
if (ms != 0) { \
|
|
|
|
chThdSleepMilliseconds(ms); \
|
|
|
|
} else { \
|
|
|
|
chThdSleepMicroseconds(1); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
# define wait_us(us) \
|
|
|
|
do { \
|
|
|
|
if (us != 0) { \
|
|
|
|
chThdSleepMicroseconds(us); \
|
|
|
|
} else { \
|
|
|
|
chThdSleepMicroseconds(1); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2018-12-18 21:21:25 +01:00
|
|
|
#elif defined PROTOCOL_ARM_ATSAM
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "clks.h"
|
|
|
|
# define wait_ms(ms) CLK_delay_ms(ms)
|
|
|
|
# define wait_us(us) CLK_delay_us(us)
|
2017-06-16 20:41:34 +02:00
|
|
|
#else // Unit tests
|
2017-07-02 00:06:39 +02:00
|
|
|
void wait_ms(uint32_t ms);
|
2019-08-30 20:19:03 +02:00
|
|
|
# define wait_us(us) wait_ms(us / 1000)
|
2017-06-16 20:41:34 +02:00
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|