Re-organize build system

This commit is contained in:
Thomas Klaehn
2020-03-30 11:45:29 +02:00
parent 3093a80f2a
commit 2e01aa6877
22 changed files with 86 additions and 11447 deletions

10
src/delay.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef __DELAY_H__
#define __DELAY_H__
#if defined(PLATFORM_nrf52)
#include "nrf_delay.h"
#define delay_ms nrf_delay_ms
#endif
#endif