diff -r 000000000000 -r b74b0e4902c3 main/manual.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main/manual.h Sat Oct 20 13:23:15 2018 +0200 @@ -0,0 +1,20 @@ +/** + * @file manual.h + * @brief Manual control + */ +#ifndef _MANUAL_H +#define _MANUAL_H + +/** + * @brief Manual init fases. + * @return true if should jump to startover. + */ +bool Manual_Init(void); + +/** + * @brief Manual loop screens. Non-blocking. + * @return true if should jump to startover. + */ +bool Manual_Loop(void); + +#endif