Use uint8_t in EEPROM code
This commit is contained in:
parent
ce82015d5f
commit
0bd54392b7
|
@ -53,7 +53,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
|
||||||
|
|
||||||
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing/*=true*/) {
|
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing/*=true*/) {
|
||||||
do {
|
do {
|
||||||
uint8_t c = eeprom_read_byte((unsigned char*)pos);
|
uint8_t c = eeprom_read_byte((uint8_t*)pos);
|
||||||
if (writing) *value = c;
|
if (writing) *value = c;
|
||||||
crc16(crc, &c, 1);
|
crc16(crc, &c, 1);
|
||||||
pos++;
|
pos++;
|
||||||
|
|
|
@ -124,8 +124,8 @@ uint8_t spiRec(uint32_t chan);
|
||||||
//
|
//
|
||||||
// EEPROM
|
// EEPROM
|
||||||
//
|
//
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value);
|
void eeprom_write_byte(uint8_t *pos, unsigned char value);
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos);
|
uint8_t eeprom_read_byte(uint8_t *pos);
|
||||||
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
||||||
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
|
||||||
|
|
||||||
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing/*=true*/) {
|
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing/*=true*/) {
|
||||||
do {
|
do {
|
||||||
uint8_t c = eeprom_read_byte((unsigned char*)pos);
|
uint8_t c = eeprom_read_byte((uint8_t*)pos);
|
||||||
if (writing) *value = c;
|
if (writing) *value = c;
|
||||||
crc16(crc, &c, 1);
|
crc16(crc, &c, 1);
|
||||||
pos++;
|
pos++;
|
||||||
|
|
|
@ -98,8 +98,8 @@ int freeMemory(void);
|
||||||
void analogWrite(int pin, int value);
|
void analogWrite(int pin, int value);
|
||||||
|
|
||||||
// EEPROM
|
// EEPROM
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value);
|
void eeprom_write_byte(uint8_t *pos, unsigned char value);
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos);
|
uint8_t eeprom_read_byte(uint8_t *pos);
|
||||||
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
||||||
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
||||||
|
|
||||||
|
|
|
@ -143,11 +143,11 @@ uint16_t analogRead(pin_t adc_pin) {
|
||||||
// Persistent Config Storage
|
// Persistent Config Storage
|
||||||
// **************************
|
// **************************
|
||||||
|
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value) {
|
void eeprom_write_byte(uint8_t *pos, unsigned char value) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned char eeprom_read_byte(uint8_t * pos) { return '\0'; }
|
uint8_t eeprom_read_byte(uint8_t * pos) { return '\0'; }
|
||||||
|
|
||||||
void eeprom_read_block(void *__dst, const void *__src, size_t __n) { }
|
void eeprom_read_block(void *__dst, const void *__src, size_t __n) { }
|
||||||
|
|
||||||
|
|
|
@ -109,8 +109,8 @@ void analogWrite(pin_t, int);
|
||||||
uint16_t analogRead(pin_t);
|
uint16_t analogRead(pin_t);
|
||||||
|
|
||||||
// EEPROM
|
// EEPROM
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value);
|
void eeprom_write_byte(uint8_t *pos, unsigned char value);
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos);
|
uint8_t eeprom_read_byte(uint8_t *pos);
|
||||||
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
||||||
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
||||||
|
|
||||||
|
|
|
@ -196,8 +196,8 @@ uint8_t spiRec(uint32_t chan);
|
||||||
/**
|
/**
|
||||||
* Wire library should work for i2c eeproms.
|
* Wire library should work for i2c eeproms.
|
||||||
*/
|
*/
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value);
|
void eeprom_write_byte(uint8_t *pos, unsigned char value);
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos);
|
uint8_t eeprom_read_byte(uint8_t *pos);
|
||||||
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
||||||
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,7 @@ bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t
|
||||||
#if DISABLED(EEPROM_EMULATED_WITH_SRAM)
|
#if DISABLED(EEPROM_EMULATED_WITH_SRAM)
|
||||||
eeprom_buffered_read_byte(pos)
|
eeprom_buffered_read_byte(pos)
|
||||||
#else
|
#else
|
||||||
(*(__IO uint8_t *)(BKPSRAM_BASE + ((unsigned char*)pos)))
|
(*(__IO uint8_t *)(BKPSRAM_BASE + ((uint8_t*)pos)))
|
||||||
#endif
|
#endif
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -212,8 +212,8 @@ uint8_t spiRec(uint32_t chan);
|
||||||
* TODO: Write all this eeprom stuff. Can emulate eeprom in flash as last resort.
|
* TODO: Write all this eeprom stuff. Can emulate eeprom in flash as last resort.
|
||||||
* Wire library should work for i2c eeproms.
|
* Wire library should work for i2c eeproms.
|
||||||
*/
|
*/
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value);
|
void eeprom_write_byte(uint8_t *pos, unsigned char value);
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos);
|
uint8_t eeprom_read_byte(uint8_t *pos);
|
||||||
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
||||||
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
||||||
|
|
||||||
|
|
|
@ -96,7 +96,7 @@ void eeprom_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value) {
|
void eeprom_write_byte(uint8_t *pos, unsigned char value) {
|
||||||
uint16_t eeprom_address = (unsigned) pos;
|
uint16_t eeprom_address = (unsigned) pos;
|
||||||
|
|
||||||
eeprom_init();
|
eeprom_init();
|
||||||
|
@ -110,7 +110,7 @@ void eeprom_write_byte(unsigned char *pos, unsigned char value) {
|
||||||
HAL_FLASH_Lock();
|
HAL_FLASH_Lock();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos) {
|
uint8_t eeprom_read_byte(uint8_t *pos) {
|
||||||
uint16_t data = 0xFF;
|
uint16_t data = 0xFF;
|
||||||
uint16_t eeprom_address = (unsigned)pos;
|
uint16_t eeprom_address = (unsigned)pos;
|
||||||
|
|
||||||
|
|
|
@ -212,8 +212,8 @@ uint8_t spiRec(uint32_t chan);
|
||||||
* TODO: Write all this eeprom stuff. Can emulate eeprom in flash as last resort.
|
* TODO: Write all this eeprom stuff. Can emulate eeprom in flash as last resort.
|
||||||
* Wire library should work for i2c eeproms.
|
* Wire library should work for i2c eeproms.
|
||||||
*/
|
*/
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value);
|
void eeprom_write_byte(uint8_t *pos, unsigned char value);
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos);
|
uint8_t eeprom_read_byte(uint8_t *pos);
|
||||||
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
||||||
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
|
||||||
|
|
||||||
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing) {
|
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing) {
|
||||||
do {
|
do {
|
||||||
uint8_t c = eeprom_read_byte((unsigned char*)pos);
|
uint8_t c = eeprom_read_byte((uint8_t*)pos);
|
||||||
if (writing) *value = c;
|
if (writing) *value = c;
|
||||||
crc16(crc, &c, 1);
|
crc16(crc, &c, 1);
|
||||||
pos++;
|
pos++;
|
||||||
|
|
|
@ -94,7 +94,7 @@ void eeprom_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value) {
|
void eeprom_write_byte(uint8_t *pos, unsigned char value) {
|
||||||
uint16_t eeprom_address = (unsigned) pos;
|
uint16_t eeprom_address = (unsigned) pos;
|
||||||
|
|
||||||
eeprom_init();
|
eeprom_init();
|
||||||
|
@ -108,7 +108,7 @@ void eeprom_write_byte(unsigned char *pos, unsigned char value) {
|
||||||
HAL_FLASH_Lock();
|
HAL_FLASH_Lock();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos) {
|
uint8_t eeprom_read_byte(uint8_t *pos) {
|
||||||
uint16_t data = 0xFF;
|
uint16_t data = 0xFF;
|
||||||
uint16_t eeprom_address = (unsigned)pos;
|
uint16_t eeprom_address = (unsigned)pos;
|
||||||
|
|
||||||
|
|
|
@ -200,8 +200,8 @@ uint8_t spiRec(uint32_t chan);
|
||||||
* TODO: Write all this eeprom stuff. Can emulate eeprom in flash as last resort.
|
* TODO: Write all this eeprom stuff. Can emulate eeprom in flash as last resort.
|
||||||
* Wire library should work for i2c eeproms.
|
* Wire library should work for i2c eeproms.
|
||||||
*/
|
*/
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value);
|
void eeprom_write_byte(uint8_t *pos, unsigned char value);
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos);
|
uint8_t eeprom_read_byte(uint8_t *pos);
|
||||||
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
void eeprom_read_block (void *__dst, const void *__src, size_t __n);
|
||||||
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
void eeprom_update_block (const void *__src, void *__dst, size_t __n);
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
|
||||||
|
|
||||||
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc) {
|
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc) {
|
||||||
do {
|
do {
|
||||||
uint8_t c = eeprom_read_byte((unsigned char*)pos);
|
uint8_t c = eeprom_read_byte((uint8_t*)pos);
|
||||||
*value = c;
|
*value = c;
|
||||||
crc16(crc, &c, 1);
|
crc16(crc, &c, 1);
|
||||||
pos++;
|
pos++;
|
||||||
|
|
|
@ -35,7 +35,7 @@ bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc) {
|
||||||
|
|
||||||
bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const bool writing/*=true*/) {
|
bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const bool writing/*=true*/) {
|
||||||
do {
|
do {
|
||||||
uint8_t c = eeprom_read_byte((unsigned char*)pos);
|
uint8_t c = eeprom_read_byte((uint8_t*)pos);
|
||||||
if (writing) *value = c;
|
if (writing) *value = c;
|
||||||
crc16(crc, &c, 1);
|
crc16(crc, &c, 1);
|
||||||
pos++;
|
pos++;
|
||||||
|
|
|
@ -56,7 +56,7 @@ bool PersistentStore::write_data(int &pos, const uint8_t *value, size_t size, ui
|
||||||
|
|
||||||
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing/*=true*/) {
|
bool PersistentStore::read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing/*=true*/) {
|
||||||
do {
|
do {
|
||||||
uint8_t c = eeprom_read_byte((unsigned char*)pos);
|
uint8_t c = eeprom_read_byte((uint8_t*)pos);
|
||||||
if (writing) *value = c;
|
if (writing) *value = c;
|
||||||
crc16(crc, &c, 1);
|
crc16(crc, &c, 1);
|
||||||
pos++;
|
pos++;
|
||||||
|
|
|
@ -35,7 +35,7 @@ bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc) {
|
||||||
|
|
||||||
bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const bool writing/*=true*/) {
|
bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const bool writing/*=true*/) {
|
||||||
do {
|
do {
|
||||||
uint8_t c = eeprom_read_byte((unsigned char*)pos);
|
uint8_t c = eeprom_read_byte((uint8_t*)pos);
|
||||||
if (writing) *value = c;
|
if (writing) *value = c;
|
||||||
crc16(crc, &c, 1);
|
crc16(crc, &c, 1);
|
||||||
pos++;
|
pos++;
|
||||||
|
|
|
@ -82,7 +82,7 @@ static void eeprom_init(void) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void eeprom_write_byte(unsigned char *pos, unsigned char value) {
|
void eeprom_write_byte(uint8_t *pos, unsigned char value) {
|
||||||
unsigned eeprom_address = (unsigned) pos;
|
unsigned eeprom_address = (unsigned) pos;
|
||||||
|
|
||||||
eeprom_init();
|
eeprom_init();
|
||||||
|
@ -128,7 +128,7 @@ void eeprom_update_block(const void *pos, void* eeprom_address, size_t n) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
unsigned char eeprom_read_byte(unsigned char *pos) {
|
uint8_t eeprom_read_byte(uint8_t *pos) {
|
||||||
byte data = 0xFF;
|
byte data = 0xFF;
|
||||||
unsigned eeprom_address = (unsigned)pos;
|
unsigned eeprom_address = (unsigned)pos;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue