I am trying to do spp communication between central and peripheral with BLE.
First, the peripheral uses microchip RN4871.
The BLE setting is
Service UUID: 49535343FE7D4AE58FA99FAFD205E455
TX characteristic UUID: 495353431E4D4BD9BA6123C647249616
RX characteristic UUID: 49535343884143F4A8D4ECBE34729BB3
is.
I'm going to implement this central device for spp communication by searching this peripheral with Nordic nrf52840 DK board.
#define NUS_BASE_UUID {{0x9E, 0xCA, 0xDC, 0x24, 0x0E, 0xE5, 0xA9, 0xE0, 0x93, 0xF3, 0xA3, 0xB5, 0x00, 0x00, 0x40, 0x6E}}
#define BLE_UUID_NUS_SERVICE 0x0001 / ** <The UUID of the Nordic UART Service. * /
#define BLE_UUID_NUS_RX_CHARACTERISTIC 0x0002 / ** <The UUID of the RX Characteristic. * /
#define BLE_UUID_NUS_TX_CHARACTERISTIC 0x0003 / ** <The UUID of the TX Characteristic. * /
As different.
I don't know whether it is necessary to register on the central device, either "Service UUID" or "TX RX characteristic UUID".
microchips are all different except 49535343
nordic is only 16bits different.
I'm also curious how to fix the different parts.
thank you.