TheNuclearDart / bringup

STM32F7 discovery board bringup
GNU Affero General Public License v3.0
0 stars 0 forks source link

Find a way to allow app to reclaim DTCM/have code loaded into DTCM #21

Open TheNuclearDart opened 6 months ago

TheNuclearDart commented 6 months ago

Currently, only the bootloader can use DTCM, as it would mangle itself if we allowed loading application code into DTCM.

One possible solution is to permanently reserve a small section of DTCM for the bootloader, and allow it to be used for... something once the application is running. The application could be loaded into the rest of DTCM, preventing overlaps.