hello nordic team
I ran the ble_app_uart example in sdk 15.3.0 on nrf52832. When i add printf("\r\n%d\r\n",15); to the code as follows, the program prints 15 to the serial screen for 3 minutes. But then it stops. The same result occurs when I add a 1 second delay. When I debug it stops at break condition. I want to receive data from a sensor and send it via serial. So how can i solve my problem.
Best regards
for (;;)
{
printf("\r\n%d\r\n",15);
idle_state_handle();
}