This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Ble uart application wont run when just plugin supply

I have a ble_uart application which is working when I load it on the chip. But it will not automaticly run again if I unplug the supply and just plugin again. When I unplug the supply, then I have to run the application again on Keil.

But if I comment out uart_init(); then the application will automaticly run by plugin the supply.

This behavoir will only appear on the ble_example. The Uart example without SD will run automaticly by plugin even when uart is initialized.

Why the ble_uart application wont run automaticly when I plugin the supply?

Uart_init seems to be the problem. But why it isnt a problem when I run it from Keil?

I cant debug this, because when i start the debugger, then I have to run the program from keil, and then it will always run.

We use a Raytac module. This module has no external LFKC. Does Ble_Uart work without LFKC?

Here my UART initialization

static void uart_init(void)
{
    uint32_t                     err_code;
    const app_uart_comm_params_t comm_params =
    {
        RX_PIN_NUMBER,
        TX_PIN_NUMBER,
        RTS_PIN_NUMBER,
        CTS_PIN_NUMBER,
        APP_UART_FLOW_CONTROL_DISABLED,
        false,
        UART_BAUDRATE_BAUDRATE_Baud19200					
    };

    APP_UART_FIFO_INIT( &comm_params,
                       UART_RX_BUF_SIZE,
                       UART_TX_BUF_SIZE,
                       uart_event_handle,
                       APP_IRQ_PRIORITY_LOW,
                       err_code);
    APP_ERROR_CHECK(err_code);
}
Parents
  • I think Ole asked you to debug your code by placing code to turn any LED on after APP_ERROR_CHECK(err_code) in uart_init to make sure code not stuck in error handler. Or to make sure that you don't have DEBUG defined in your code while programming with Keil because if not defined then error handler won't block code execution in case of error. Or just comment APP_ERROR_CHECK(err_code) and try again if you 100% sure problem in uart_init. I would also check if bootloader is loaded, but you are saying that without uart_init all works...

Reply
  • I think Ole asked you to debug your code by placing code to turn any LED on after APP_ERROR_CHECK(err_code) in uart_init to make sure code not stuck in error handler. Or to make sure that you don't have DEBUG defined in your code while programming with Keil because if not defined then error handler won't block code execution in case of error. Or just comment APP_ERROR_CHECK(err_code) and try again if you 100% sure problem in uart_init. I would also check if bootloader is loaded, but you are saying that without uart_init all works...

Children
No Data
Related