Search Results

Search results 1-6 of 6.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Quote from CheMax: “Can you share your experience of using the debug monitor with nrf52840? ” Sure, I've created a minimum working example based on ble_app_hrs_freertos, adding MMD and the thread awareness scripts. I've tested it on a plain nRF52840 DK and uploaded to GItHub.

  • I spent some time getting thread awareness scripts working for FreeRTOS on a Nordic nRF52840 device and thought I'd share my findings in case anyone else is having similar issues. I'm using SES 5.10b on Windows 10, and I started by going into Project Options, Debug, Debugger, and set the RTOS Awareness option to FreeRTOS CM4. This should automatically change the Threads Script File option to $(StudioDir)/samples/FreeRTOSPlugin_CM4.js. When I then debugged the app, I received several error popups…

  • I also get this error on any project from the Nordic SDK 15.3.0. Here is the output from right-clicking main.c in the blinky project and choosing 'Run Static Code Analyzer', for example: ../../../../../../components/toolchain/cmsis/include/cmsis_gcc.h:340:54: error: unknown register name 'vfpcc' in asm

  • Nordic has posted a fix for this in devzone.nordicsemi.com/f/nordi…dded-studio/182906#182906 You need to change a line in your sdk_config.h from #define NRF_FPRINTF_FLAG_AUTOMATIC_CR_ON_LF_ENABLED 1 to #define NRF_FPRINTF_FLAG_AUTOMATIC_CR_ON_LF_ENABLED 0 I hope that helps.

  • Thanks Nino, this project works fine in 4.16 for me. There must be some issue with Nordic's nrf_log and 4.16, since that is the method all the SDK examples use. I will file an issue with Nordic. Thank you again, - Kirk

  • After upgrading to 4.16, none of my projects output RTT text, except for a line feed. 4.12 works just fine if I reinstall it. I can also disable RTT output in the project options, run the command line JLinkRTTClient and that works. I've also made sure to update the SEGGER_RTT_*.c source files in the project to the latest from JLink 6.44d, which didn't make any difference. I'm running macOS 10.14.4 and using a Nordic nRF52840-DK. Any of the example projects in Nordic SDK 15.3.0 show the same beha…