Hello,
nRF52840-DK
SDK: 15.3.0
s140
OS: Ubuntu
IDE: SES
Our application is has a notify characteristic that works when attached to the JLink debugger. I can get the notify update within nRF connect, but when the application is not attached to the debugger the notify does not get updated. The notify is attached to a switch that is configured with app_button.
The order I took:
- Target >> Connect J-Link
- Target >> Download Application
- Connect with BT using nRF Connect
- Turn on notify
- press switch several times
- Result: No value update occurs with characteristic notify on phone
- Target >> Attach Debugger
- Press Switch
- Result: Notify Value updates on phone
Note: additionally if loaded with the play button in SES, the notify works as expected.
One thought is that printf, or NRF_LOG_INFO is causing an issue, but that is a loose theory.
Has this behavior been seen before? I have found some posts that are similar, but not the exact same issue.
The solution suggested in the post works, switching SEGGER_RTT_CONFIG_DEFAULT_MODE from 2, to 1, Blocking to Trim. The notify works while attached to the debugger and not attached to the debugger.
Do you know why this behavior is the case? Is this expected?