2022-02-06 19:03:47 -08:00
|
|
|
#pragma once
|
2022-02-24 21:36:16 -08:00
|
|
|
|
2024-09-28 21:19:27 -07:00
|
|
|
#if EFI_PROD_CODE && HAL_USE_EEPROM
|
2022-02-24 21:36:16 -08:00
|
|
|
#ifndef EE_PAGE_SIZE
|
|
|
|
#define EE_PAGE_SIZE 32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef EE_SIZE
|
|
|
|
#define EE_SIZE 4096
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef EE_U2CD
|
|
|
|
#define EE_U2CD I2CD3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct odometer_state {
|
|
|
|
int totalMeters;
|
|
|
|
int crc;
|
|
|
|
};
|
2024-09-28 21:19:27 -07:00
|
|
|
|
|
|
|
#endif
|