UART_INIT causing no RTT LOG output

Custom board using BL654 (NRF52840)

SDK 17.1.0

SD140 7.2.0

I was able to run the ble_app_uart totally successfully (with RTT LOG output) until I tried to add uart capability. Now I get no output at all on RTT viewer (before I did), and when on the debugger, it crashes before the first function call in main saying unknown function at 0x00000A60. The uart is connected to a peripheral and is only supposed to fetch data for processing, not redirected to bluetooth or anything.

Parents Reply
  • Hi there,

    JGusler said:
    THe only message at all that I get is "Unknown function at 0x00000A60" which occurs right after I hit resume after the debugger pauses at main

    You can't resume a Softdevice application after halting the program. You need to restart the program after each time it hits a breakpoint or the core is halted. The Softdevice will hardfault due to internal timing if the program is resumed after it has been halted. See this thread for more.

    regards

    Jared 

Children
Related