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

15.3.0 NUS based on 13.1.0 BLE android application VUS

Does anyone have experience in porting both embedded and android code from the 13.1.0 SDK to 15.x.x?

I'm running into an issue where the system worked fine on 13.1.0, but doesn't get the nrf's reply's. It would seem that notifications are disabled for the characteristics but, I can't find a quick path forward on this issue. 

I had to change this:

//#define BLE_UUID_NUS_TX_CHARACTERISTIC 0x0003 /**< The UUID of the TX Characteristic. */
//#define BLE_UUID_NUS_RX_CHARACTERISTIC 0x0002 /**< The UUID of the RX Characteristic. */
#define BLE_UUID_NUS_TX_CHARACTERISTIC 0x0F11 /**< The UUID of the TX Characteristic. */
#define BLE_UUID_NUS_RX_CHARACTERISTIC 0x0F12 /**< The UUID of the RX Characteristic. *

and the base service uuid to 0x0f10 for the device to even show up in our application.

Any ideas would be greatly appreciated!

Related