some minimal progress

This commit is contained in:
2020-10-27 15:12:19 +01:00
parent 5aa62d9f38
commit 1edf9355aa
6 changed files with 106 additions and 73 deletions

9
cube/User/Inc/led.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef _LED_H_
#define _LED_H_
#include <stdbool.h>
void ledRed(bool on);
void ledGreen(bool on);
#endif // _LED_H_

8
cube/User/Inc/loopCtrl.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef _LOOPCTRL_H_
#define _LOOPCTRL_H_
void loopEnable();
void loopDisable();
#endif // _LOOPCTRL_H_