microbit: Remove redundant characteristics in BLE DeviceInformationService
The MANUFACTURER and HARDWARE_REVISION fields from this standard service have been removed, as they carried no useful information.
This commit is contained in:
parent
06aaefb40a
commit
6838b38fc1
1 changed files with 2 additions and 2 deletions
|
@ -29,9 +29,9 @@
|
|||
#define MICROBIT_BLE_MAXIMUM_BONDS 4
|
||||
|
||||
|
||||
const char* MICROBIT_BLE_MANUFACTURER = "The Cast of W1A";
|
||||
const char* MICROBIT_BLE_MANUFACTURER = NULL;
|
||||
const char* MICROBIT_BLE_MODEL = "BBC micro:bit";
|
||||
const char* MICROBIT_BLE_HARDWARE_VERSION = "1.0";
|
||||
const char* MICROBIT_BLE_HARDWARE_VERSION = NULL;
|
||||
const char* MICROBIT_BLE_FIRMWARE_VERSION = MICROBIT_DAL_VERSION;
|
||||
const char* MICROBIT_BLE_SOFTWARE_VERSION = NULL;
|
||||
const int8_t MICROBIT_BLE_POWER_LEVEL[] = {-30, -20, -16, -12, -8, -4, 0, 4};
|
||||
|
|
Loading…
Reference in a new issue