Bora Özgen
Bora Özgen
@Benjoyo were you able to solve this? I am also struggling to get SWO working. It works if I run the JLinkSWOViewer tool before the example, otherwise it does not...
After some trial and error, I found the missing step. My firmware was configuring everything but the SWO clock speed, which is done using the TPIU_ACPR register. It works when...
This is blocking adoption for us. How much effort would this require to be implemented?
We are using a bootloader with an application. Therefore it is required to shift the application in ROM. [Here](https://os.mbed.com/docs/mbed-os/v6.9/program-setup/creating-and-using-a-bootloader.html) it is explained that `target.mbed_app_start` and `target.mbed_app_size` can be used to...
I tried it today too, like @jrobeson said it does not parse the inputs from `mbed_app.json`. ``` { "target_overrides": { "*": { "target.mbed_rom_start": "0x8020200", "target.mbed_rom_size": "0xBE000" } } } ```...
STM32F4 based custom targets and dev boards (e.g. NUCLEO_F429ZI). I just modified targets.json to define `mbed_rom_start` and `mbed_rom_size` for my target, and indeed the compiler flags appeared in `mbed_config.cmake`. However...
@ladislas this generates the flags in mbed_config.cmake but does not seem to shift the image. A quick search for `MBED_CONFIG_DEFINITIONS` shows that these flags are not given to the linker....
Deep clean did it, don't know why though. Not a good sign IMHO :/ Nice workaround, thanks!
It would be great to have this feature. I always replace the binaries compiled by the Arduino and with the ones compiled by the makefile and so on...
The documentation is outdated. The build folder is not `cmake_build` anymore, but contains the target and the compiler options given to `mbed-tools configure`. Check your `cmake_build` directory to find where...