Clone of the nRF51822 repository from github The correct home is https://github.com/lancaster-university/nRF51822
Dependencies: nrf51-sdk
Dependents: microbit-dal microbit-ble-open microbit-dal-eddystone microbit-dal-ble-accelerometer-example ... more
Diff: source/btle/custom/custom_helper.cpp
- Revision:
- 557:e4218a32be51
- Parent:
- 553:2a413611e569
- Child:
- 615:65ea2acfc6a2
--- a/source/btle/custom/custom_helper.cpp Mon Jan 11 10:19:12 2016 +0000 +++ b/source/btle/custom/custom_helper.cpp Mon Jan 11 10:19:13 2016 +0000 @@ -148,9 +148,8 @@ ble_uuid128_t base_uuid; uint8_t uuid_type = 0; - /* Reverse the bytes since ble_uuid128_t is LSB */ for (unsigned i = 0; i < UUID::LENGTH_OF_LONG_UUID; i++) { - base_uuid.uuid128[i] = p_uuid_base[UUID::LENGTH_OF_LONG_UUID - 1 - i]; + base_uuid.uuid128[i] = p_uuid_base[i]; } ASSERT_INT( ERROR_NONE, sd_ble_uuid_vs_add( &base_uuid, &uuid_type ), 0); @@ -168,9 +167,8 @@ { UUID::LongUUIDBytes_t uuid_base_le; - /* Reverse the bytes since ble_uuid128_t is LSB */ for (uint8_t i = 0; i < UUID::LENGTH_OF_LONG_UUID; i++) { - uuid_base_le[i] = p_uuid_base[UUID::LENGTH_OF_LONG_UUID - 1 - i]; + uuid_base_le[i] = p_uuid_base[i]; } ASSERT_STATUS( sd_ble_uuid_decode(UUID::LENGTH_OF_LONG_UUID, uuid_base_le, p_uuid));