removed eeprom.h .c

This commit is contained in:
2024-05-24 19:03:52 +03:00
parent c8047a9017
commit 61e455dfcd
3 changed files with 0 additions and 73 deletions

View File

@ -1,17 +0,0 @@
#ifndef INC_EEPROM_H_
#define INC_EEPROM_H_
#include "stm32f3xx_hal.h"
#include <stdint.h>
__attribute__((packed)) typedef struct {
uint8_t id;
} EEPROMConfig;
extern EEPROMConfig eeprom_config;
void eeprom_init(I2C_HandleTypeDef* hi2c);
void eeprom_config_save();
#endif // INC_EEPROM_H_