DTM with libuart

Hello!!!! I use libuart to carry out DTM test. I start DTM test use follow codes:

int ble_dtm_test_init(void)
{
    int dtm_error_code;

    dtm_error_code = nrf_sdh_disable_request();
    dtm_error_code = dtm_init();
    return dtm_error_code;
}

after the codes executed, when i send data to device use libuart, it receive nothing, but nrf_libuarte_async_tx() works.

Related