diff -r 000000000000 -r 88d965579617 main/updates.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main/updates.h Tue Oct 08 12:00:31 2019 +0200 @@ -0,0 +1,20 @@ +/** + * @file updates.h + * @brief Updates management. It can download and install new firmware + * downloaded from the internet. + */ + +#ifndef _UPDATES_H +#define _UPDATES_H + +/** + * @brief Updates init fases. + */ +void Updates_Init(void); + +/** + * @brief Updates loop screens. Blocking. + */ +void Updates_Loop(void); + +#endif