No changes
Fork of nRF51822 by
Diff: source/nRF5xGattClient.h
- Revision:
- 437:ed7c7f31ac37
- Parent:
- 434:95f196557042
- Child:
- 439:f9f62a252f80
--- a/source/nRF5xGattClient.h Fri Sep 25 15:26:58 2015 +0100 +++ b/source/nRF5xGattClient.h Fri Sep 25 15:26:58 2015 +0100 @@ -122,9 +122,11 @@ } virtual ble_error_t write(GattClient::WriteOp_t cmd, Gap::Handle_t connHandle, GattAttribute::Handle_t attributeHandle, size_t length, const uint8_t *value) const { - ble_gattc_write_params_t writeParams = { }; + ble_gattc_write_params_t writeParams; writeParams.write_op = cmd; + writeParams.flags = 0; /* this is inconsequential */ writeParams.handle = attributeHandle; + writeParams.offset = 0; writeParams.len = length; writeParams.p_value = const_cast<uint8_t *>(value);