Go to file
2026-04-28 16:48:03 +08:00
.idea feat: add config file transfer by erpc 2026-04-28 16:48:03 +08:00
applications feat: add config file transfer by erpc 2026-04-28 16:48:03 +08:00
board feat: add lfs file system use on chip flash 2026-04-27 17:35:54 +08:00
figures feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
libraries feat: add lfs file system use on chip flash 2026-04-27 17:35:54 +08:00
packages feat: add config file transfer by erpc 2026-04-28 16:48:03 +08:00
rt-thread feat:add erpc usb cdc interface 2026-01-07 11:41:07 +08:00
.config feat: add config file transfer by erpc 2026-04-28 16:48:03 +08:00
.gitignore feat:open I cache and FPU 2025-12-30 15:44:41 +08:00
CMakeLists.txt feat: add config file transfer by erpc 2026-04-28 16:48:03 +08:00
Kconfig feat:add erpc uart 2025-12-24 18:28:20 +08:00
project.ewp feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
project.eww feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
project.uvoptx feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
project.uvprojx feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
README.md feat: add on chip flash as config by fal 2026-04-27 13:09:08 +08:00
rtconfig.h feat: add lfs file system use on chip flash 2026-04-27 17:35:54 +08:00
rtconfig.py feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
SConscript feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
SConstruct feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
stm32h7x_dual_qspi.cfg feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
stm32h750_jlink_qspi.cfg feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
stm32h750b-jlink.cfg feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
template.ewp feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
template.eww feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
template.uvoptx feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
template.uvprojx feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00
tt.cfg feat:run application from QSPI @ 0x90000000 2025-12-24 09:54:51 +08:00

为了暂时使用芯片上超出128k 的flash 当作config 文件的存储区,修改了 libraries/STM32H7xx_HAL/CMSIS/Device/ST/STM32H7xx/Include/stm32h750xx.h 的

#define FLASH_END (0x0801FFFFUL) /*!< FLASH end address

#define FLASH_END (0x0803FFFFUL) /*!< FLASH end address

并在libraries/HAL_Drivers/drivers/drv_flash/drv_flash_h7.c 中添加了 const struct fal_flash_dev stm32_onchip_flash_256k = { "onchip_flash_256k", 0x08000000, (256 * 1024), (128 * 1024), {NULL, fal_flash_read_128k, fal_flash_write_128k, fal_flash_erase_128k},256 };