copy files over from slave

This commit is contained in:
2024-05-10 18:59:00 +02:00
parent b5f51ac964
commit f05f1fd3b8
192 changed files with 2014 additions and 313161 deletions

17
Core/Inc/eeprom.h Normal file
View File

@ -0,0 +1,17 @@
#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_