Hi -
What is the best way to build a project so all of the GUIX studio resources are placed in QSPI memory?
- Using BSP_PLACE_IN_SECTION(".qspi_flash_data") I can get individual items to link to the QSPI, but this is not an option for the large number of GUI items.
- The resource and specification files generated by GUIX studio are placed in their own directory: \src\guix_gen\GNU
- In the linker script I added the following:
/* Place GUIX Studio generated objects in QSPI */
.qspi_guix :
{
. = ALIGN(4);
*guix_gen/GNU/*.o
. = ALIGN(4);
} >QSPI_FLASH
This resulted in all the GUI code being stored in QSPI -and- internal flash with the the map showing internal flash addresses (not QSPI) for all of the constants in the GUI.
Any help would be appreciated!
cheers,
jamie