stm32f4xx_board.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef INC_STM32F4XX_BOARD_H_
  2. #define INC_STM32F4XX_BOARD_H_
  3. #include "stm32f4xx.h"
  4. #include "stm32f4xx_hal.h"
  5. #define REG32(addr) (*(volatile uint32_t *)(uint32_t)(addr))
  6. #define REG16(addr) (*(volatile uint16_t *)(uint32_t)(addr))
  7. #define REG8(addr) (*(volatile uint8_t *)(uint32_t)(addr))
  8. #define BIT(x) ((uint32_t)((uint32_t)0x01U<<(x)))
  9. #define BITS(start, end) ((0xFFFFFFFFUL << (start)) & (0xFFFFFFFFUL >> (31U - (uint32_t)(end))))
  10. // Base address of the Flash sectors
  11. #define ADDR_FLASH_SECTOR_0 ((uint32_t)0x08000000) /* Base @ of Sector 0, 16 Kbytes */
  12. #define ADDR_FLASH_SECTOR_1 ((uint32_t)0x08004000) /* Base @ of Sector 1, 16 Kbytes */
  13. #define ADDR_FLASH_SECTOR_2 ((uint32_t)0x08008000) /* Base @ of Sector 2, 16 Kbytes */
  14. #define ADDR_FLASH_SECTOR_3 ((uint32_t)0x0800C000) /* Base @ of Sector 3, 16 Kbytes */
  15. #define ADDR_FLASH_SECTOR_4 ((uint32_t)0x08010000) /* Base @ of Sector 4, 64 Kbytes */
  16. #define ADDR_FLASH_SECTOR_5 ((uint32_t)0x08020000) /* Base @ of Sector 5, 128 Kbytes */
  17. #define ADDR_FLASH_SECTOR_6 ((uint32_t)0x08040000) /* Base @ of Sector 6, 128 Kbytes */
  18. #define ADDR_FLASH_SECTOR_7 ((uint32_t)0x08060000) /* Base @ of Sector 7, 128 Kbytes */
  19. #define ADDR_FLASH_SECTOR_8 ((uint32_t)0x08080000) /* Base @ of Sector 8, 128 Kbytes */
  20. #define ADDR_FLASH_SECTOR_9 ((uint32_t)0x080A0000) /* Base @ of Sector 9, 128 Kbytes */
  21. #define ADDR_FLASH_SECTOR_10 ((uint32_t)0x080C0000) /* Base @ of Sector 10, 128 Kbytes */
  22. #define ADDR_FLASH_SECTOR_11 ((uint32_t)0x080E0000) /* Base @ of Sector 11, 128 Kbytes */
  23. #define FLASH_END_ADDRESS ((uint32_t)0x080EFFFF)
  24. #define APP1_ADDRESS ADDR_FLASH_SECTOR_3 //16+64+128+128 = 336k
  25. #define APP2_ADDRESS ADDR_FLASH_SECTOR_7 //128*3 = 384k
  26. #define CONFIG_IAP_INFO_SECTOR FLASH_SECTOR_2
  27. #define CONFIG_IAP_INFO_ADDR ADDR_FLASH_SECTOR_2
  28. #define CONFIG_NVM0_ADDRESS ADDR_FLASH_SECTOR_10
  29. #define CONFIG_NVM1_ADDRESS ADDR_FLASH_SECTOR_11
  30. #define CONFIG_NVM_SIZE (2*128*1024)
  31. #endif /* INC_STM32F4XX_BOARD_H_ */