1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #ifndef __EEPROM_H
- #define __EEPROM_H
- #include "ch.h"
- #include "hal.h"
- #include "flash_stm32.h"
- #if defined(EEPROM_EMU_STM32F303xC)
- #define MCU_STM32F303CC
- #elif defined(EEPROM_EMU_STM32F103xB)
- #define MCU_STM32F103RB
- #elif defined(EEPROM_EMU_STM32F072xB)
- #define MCU_STM32F072CB
- #else
- #error "not implemented."
- #endif
- #ifndef EEPROM_PAGE_SIZE
- #if defined (MCU_STM32F103RB)
- #define FEE_PAGE_SIZE (uint16_t)0x400
- #define FEE_DENSITY_PAGES 2
- #elif defined (MCU_STM32F103ZE) || defined (MCU_STM32F103RE) || defined (MCU_STM32F103RD) || defined (MCU_STM32F303CC) || defined(MCU_STM32F072CB)
- #define FEE_PAGE_SIZE (uint16_t)0x800
- #define FEE_DENSITY_PAGES 4
- #else
- #error "No MCU type specified. Add something like -DMCU_STM32F103RB to your compiler arguments (probably in a Makefile)."
- #endif
- #endif
- #ifndef EEPROM_START_ADDRESS
- #if defined (MCU_STM32F103RB) || defined(MCU_STM32F072CB)
- #define FEE_MCU_FLASH_SIZE 128
- #elif defined (MCU_STM32F103ZE) || defined (MCU_STM32F103RE)
- #define FEE_MCU_FLASH_SIZE 512
- #elif defined (MCU_STM32F103RD)
- #define FEE_MCU_FLASH_SIZE 384
- #elif defined (MCU_STM32F303CC)
- #define FEE_MCU_FLASH_SIZE 256
- #else
- #error "No MCU type specified. Add something like -DMCU_STM32F103RB to your compiler arguments (probably in a Makefile)."
- #endif
- #endif
- #define FEE_PAGE_BASE_ADDRESS ((uint32_t)(0x8000000 + FEE_MCU_FLASH_SIZE * 1024 - FEE_DENSITY_PAGES * FEE_PAGE_SIZE))
- #define FEE_DENSITY_BYTES ((FEE_PAGE_SIZE / 2) * FEE_DENSITY_PAGES - 1)
- #define FEE_LAST_PAGE_ADDRESS (FEE_PAGE_BASE_ADDRESS + (FEE_PAGE_SIZE * FEE_DENSITY_PAGES))
- #define FEE_EMPTY_WORD ((uint16_t)0xFFFF)
- #define FEE_ADDR_OFFSET(Address)(Address * 2)
- uint16_t EEPROM_Init(void);
- void EEPROM_Erase (void);
- uint16_t EEPROM_WriteDataByte (uint16_t Address, uint8_t DataByte);
- uint8_t EEPROM_ReadDataByte (uint16_t Address);
- #endif
|