| Rev | Line | |
|---|
| [3] | 1 | #include "stm32g0xx_hal.h" |
|---|
| 2 | #include "stdbool.h" |
|---|
| 3 | #include "sysdata.h" |
|---|
| 4 | |
|---|
| 5 | HAL_StatusTypeDef EEPROM_readConfig(sys_data_t * data); |
|---|
| 6 | HAL_StatusTypeDef EEPROM_storeConfig(sys_data_t * data, bool withSN, bool saveNewKey); |
|---|
| 7 | HAL_StatusTypeDef EEPROM_fullRestore(sys_data_t * data, bool keepSN); |
|---|
| 8 | HAL_StatusTypeDef EEPROM_factoryRestore(sys_data_t * data); |
|---|
| 9 | HAL_StatusTypeDef EEPROM_storeLogData(void); |
|---|
| 10 | HAL_StatusTypeDef EEPROM_readLogData(void); |
|---|
| 11 | HAL_StatusTypeDef EEPROM_ResetLogData(void); |
|---|
| 12 | |
|---|
| 13 | bool EEPROM_isFirstStart(void); |
|---|
Note: See
TracBrowser
for help on using the repository browser.