narf52/src/delay.h
2020-03-30 14:17:42 +02:00

11 lines
149 B
C

#ifndef __DELAY_H__
#define __DELAY_H__
#if defined(PLATFORM_nrf52)
#include "nrf_delay.h"
#define delay_ms nrf_delay_ms
#endif
#endif