Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of X_NUCLEO_IDB0XA1 by
Revision 261:16cdf278f70a, committed 2016-09-15
- Comitter:
- Vincent Coubard
- Date:
- Thu Sep 15 10:51:23 2016 +0100
- Branch:
- 3424b6c8dd13368e3e064741f8d4f09bebeab02a
- Parent:
- 260:e93cbde933ce
- Child:
- 262:a3460768f3b7
- Commit message:
- Sync with 3424b6c8dd13368e3e064741f8d4f09bebeab02a
2016-07-08 14:38:21+01:00: Vincent Coubard
printf => PRINTF
Changed in this revision
| source/BlueNRGGattServer.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- 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;
}
