Implement DMX reciever and add more advanced failure mode #1

Merged
mhu merged 7 commits from dmx_receiver into master 2022-07-15 19:49:55 +02:00
3 changed files with 6 additions and 0 deletions
Showing only changes of commit d7ce66b1d8 - Show all commits

View File

@ -13,6 +13,7 @@ endif
#Add Files and Folders below#########################################################
CFILES = main.c syscalls/syscalls.c setup/system_init.c startup/startup_stm32f0xx.c
CFILES += temp-adc.c
CFILES += dmx.c
ASFILES = sk6812.S
INCLUDEPATH = -Iinclude -Iinclude/cmsis

1
firmware/dmx.c Normal file
View File

@ -0,0 +1 @@
#include <ring-light/dmx.h>

View File

@ -0,0 +1,4 @@
#ifndef _DMX_H_
#define _DMX_H_
#endif /* _DMX_H_ */