Initial InfiniSim project

This commit is contained in:
Reinhold Gschweicher
2022-02-16 21:42:29 +01:00
parent cea006b049
commit f19355949b
78 changed files with 9978 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#include "libraries/delay/nrf_delay.h"
#include <SDL2/SDL.h>
void nrf_delay_ms(uint32_t ms_time)
{
SDL_Delay(ms_time);
}