BLE test
Fork of X_NUCLEO_IDB0XA1 by
Diff: source/BlueNRGGattServer.cpp
- Branch:
- 3424b6c8dd13368e3e064741f8d4f09bebeab02a
- Revision:
- 261:16cdf278f70a
- Parent:
- 260:e93cbde933ce
- Child:
- 262:a3460768f3b7
--- a/source/BlueNRGGattServer.cpp Thu Sep 15 10:51:22 2016 +0100 +++ b/source/BlueNRGGattServer.cpp Thu Sep 15 10:51:23 2016 +0100 @@ -440,7 +440,7 @@ // check that the len of the data to write are compatible with the characteristic GattCharacteristic* characteristic = getCharacteristicFromHandle(attributeHandle); if (!characteristic) { - printf("characteristic not found\r\n"); + PRINTF("characteristic not found\r\n"); return BLE_ERROR_INVALID_PARAM; } @@ -449,14 +449,14 @@ // reject write if the lenght exceed the maximum lenght of this attribute if (value_attribute.getMaxLength() < len) { - printf("invalid variable length: %u, max length is: %u\r\n", len, value_attribute.getMaxLength()); + PRINTF("invalid variable length: %u, max length is: %u\r\n", len, value_attribute.getMaxLength()); return BLE_ERROR_INVALID_PARAM; } // reject write if the attribute size is fixed and the lenght in input is different than the // length of the attribute. if (value_attribute.hasVariableLength() == false && value_attribute.getMaxLength() != len) { - printf("invalid fixed length: %u, len should be %u\r\n", len, value_attribute.getMaxLength()); + PRINTF("invalid fixed length: %u, len should be %u\r\n", len, value_attribute.getMaxLength()); return BLE_ERROR_INVALID_PARAM; }