I am developing my project in a nRF52832 custom board. I am working in SDK v12.2.0. My application program is based on ble_app_uart.
It seem a bug about the defined characteristic uuid of RX and TX. The definition in "ble_nus.c" is as the following:
#define BLE_UUID_NUS_TX_CHARACTERISTIC 0x0002 /**< The UUID of the TX Characteristic. */
#define BLE_UUID_NUS_RX_CHARACTERISTIC 0x0003 /**< The UUID of the RX Characteristic. */
But while I connect my board by nRF Connect APP in an android phone, the RX and TX characteristic uuid is not consistent with them
defined in ble_nus.c. The TX uuid is 0003 and the RX uuid is 0002 instead. The version of nRF Connect APP is 4.19.2. This bug won`t
influence the operation of Nordic UART Service but just looks weird.