mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-08 22:00:49 +02:00
12 lines
203 B
C
12 lines
203 B
C
#ifndef MAE_H
|
|
#define MAE_H
|
|
|
|
#include "stm32f10x.h"
|
|
|
|
void machineWithStates(void);
|
|
|
|
void action_IDLE(void);
|
|
void action_RUN (void);
|
|
void action_LOWBAT(void);
|
|
void action_CHARGE(void);
|
|
#endif
|