add EEPROM file

This commit is contained in:
2023-08-27 17:39:45 +02:00
parent 97b9e38665
commit 5bbc7bc0c3
5 changed files with 71 additions and 45 deletions

View File

@ -0,0 +1,8 @@
/**
* @author R<>mi Heredero
* @version 1.0.0
* @date August 2023
* @file eeprom_interface.h
*/
#include "eeprom_interface.h"

View File

@ -0,0 +1,15 @@
/**
* @author R<>mi Heredero
* @version 1.0.0
* @date August 2023
* @file eeprom_interface.h
*/
#ifndef EEPROM_INTERFACE_H
#define EEPROM_INTERFACE_H
MEM_write_1_byte(uint8_t addresse, uint8_t data);
MEM_write_4_byte(uint32_t data);
// void MEM_write_CONTROL_STEERING_MODE(uint8_t data);
#endif /* EEPROM_INTERFACE_H */