Hi, there:
I am developing on nRF52840 platform with SDK Version 17.0.0_9d13099. I am developing based on ble_peripheral/ble_app_buttonless_dfu.
I succeeded to combine DFU and Battery Service. I tried to read related topics but still can't find a way to combine 3 service, I tried the following configuration
static ble_uuid_t m_adv_uuids[] =
{
{BLE_UUID_BATTERY_SERVICE, BLE_UUID_TYPE_BLE},
{BLE_UUID_OUR_SERVICE_UUID, BLE_UUID_TYPE_VENDOR_BEGIN+1},
{BLE_UUID_DEVICE_INFORMATION_SERVICE, BLE_UUID_TYPE_BLE}
};
and also I set NRF_SDH_BLE_VS_UUID_COUNT as 2 and corresponding ram adjustment. It's just NOT working
Below listed the error messages in RTTViewer
<info> app: Setting vector table to bootloader: 0x000F8000
<info> app: Setting vector table to main app: 0x00027000
<info> app_timer: RTC: initialized.
<error> app: Fatal error
Can anyone give me some tips? Thanks!