14 lines
181 B
C
Raw Normal View History

2020-10-27 15:12:19 +01:00
#ifndef _LOOPCTRL_H_
#define _LOOPCTRL_H_
2020-10-27 22:28:03 +01:00
#include <stdbool.h>
2020-10-27 15:12:19 +01:00
void loopEnable();
void loopDisable();
2020-10-27 22:28:03 +01:00
void loopStatusCallback();
extern bool loopActive;
2020-10-27 15:12:19 +01:00
#endif // _LOOPCTRL_H_