Hello,
I have inherited a Thingy:52 project which was using some old versions of SDKs. Now I am trying to port it to a newer version in order to make it compatible with Bluetooth mesh.
In the current version I am using JLink v6.22g to see debug messages, but I just downloaded the Thingy:52 SDK v2.1.0, bare bones, no changes. I installed the software on the Thingy:52 successfully using this script
make -C "$(dirname "$0")/armgcc" clean && make -j -C "$(dirname "$0")/armgcc" && nrfjprog --eraseall nrfjprog -f NRF52 --program "$(dirname "$0")/../../external/sdk13/components/softdevice/s132/hex/s132_nrf52_4.0.2_softdevice.hex" && nrfjprog -f NRF52 --program "$(dirname "$0")/armgcc/_build/nrf52832_xxaa_s132.hex" && nrfjprog --reset
This seems to work correctly, I have checked the memory layout after running it, it works on the older version and the LED-behaviour is correct.
But whatever logs I put in my code, it just prints nothing in the RTT.
As I said I am running Thingy:52 SDK v2.1.0 and JLink v6.22g (from recommendation by a Nordic Semiconductor engineer a while back). But maybe this version doesn't work with this SDK?