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

nRF Toolbox - UART App

We are using the Nordic nRF52840 on our current design.   Currently,   I am using nRF Toolbox -UART app on my

mobile phone to send data via 9 buttons available on the App. Everything is working fine as far as "sending"

data from the phone to the nRF52840 chip. 

However, as far as I can tell,  the App does not have a "receive" feature built-in, is there anyway to find out

and verify that the phone can receive the data from the target board? perhaps with a different app?

Thanks  in advance

JIMMY

Parents Reply Children
  • Hello Viidar,

    Currently, within the main() function I already have the uart_init() function below, and you meant I would need another uart_init() for the UARTE1?

    void main()

    {

       uart_init();    //for UARTE0

    //need another uart_int() here for UARTE1 ?

    .

    .

    }//end main

    //***********************************//

    static void uart_init(void)
    {
        uint32_t                     err_code;
        app_uart_comm_params_t const comm_params =
        {

            .rx_pin_no    = RX_PIN_NUMBER,            //#define RX_PIN_NUMBER       at file: pca10056.h
            .tx_pin_no    = TX_PIN_NUMBER,            //#define TX_PIN_NUMBER   
            .rts_pin_no   = RTS_PIN_NUMBER,           //#define RTS_PIN_NUMBER  
            .cts_pin_no   = CTS_PIN_NUMBER,           //#define CTS_PIN_NUMBER  
            .flow_control = APP_UART_FLOW_CONTROL_DISABLED,
            .use_parity   = false,


    #if defined (UART_PRESENT)
           //  NRF_UART_BAUDRATE_115200
           .baud_rate    = NRF_UART_BAUDRATE_115200
    #else
            .baud_rate    = NRF_UARTE_BAUDRATE_115200
    #endif
        };

        APP_UART_FIFO_INIT(&comm_params,
                           UART_RX_BUF_SIZE,
                           UART_TX_BUF_SIZE,
                           uart_event_handle,
                           APP_IRQ_PRIORITY_LOWEST,
                           err_code);
        APP_ERROR_CHECK(err_code);
    }
    /**@snippet [UART Initialization] */

  • How the new function for UARTE1 can be distinguished from the UARTE0? I don't see anything mentioned in the uart_int()  to expose itself exclusively for UARTE0? I feel that the documentations provided is way insufficient for the user.  We need your help here.   Thanks    JIMMY

  • If you look at the app_uart_fifo.c::app_uart_init() function you can see that it's using the UART driver which I linked to earlier, and the UART instance ('0') is defined at the top of the same source file. 

Related