Is it possible to create a BLE application that can be debugged with just the RAM?
The QSPI flash on our dev board has broken and we need to keep working on the firmware. All of the example projects only have QSPI build options, but I can't see a reason for this except for the sleep mode (which can be changed to always active)
Keywords:
Device:
Hi edwardwhite,
There is no BLE example that runs only in RAM, the reason for that is the size of the code cannot fit in the 128KB RAM + 16KB cache of the 68x, but you can build a project small enough, like the ble_central in order to run only to the RAM (the BLE manager, the BLE adapter etc have a quite large footprint). If the project that you have developed is large enough then there is no way to fit that in the sysram. Some mods that you will have to do in order to try to run your project only in sysram are the following:
Thanks MT_dialog