source: ecs_cellMon/firmware/inc/eeprom.h @ 3

Last change on this file since 3 was 3, checked in by f.jahn, 20 months ago

fw hinzugfügt-->zed

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