11 lines
149 B
C
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
|