Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/btle
Toby Murray 203176a01e Update GATT characteristic list
The current GATT characteristic list mentions it was up to date as of populated 2015-09-28. In the last 6 years, significantly more characteristics have been added to the Bluetooth spec. While it's not necessary to have all these constants available in Gadgetbridge, it's useful while implementing new features for a device or adding support for a new device

This was retrieved from https://btprodspecificationrefs.blob.core.windows.net/assigned-values/16-bit%20UUID%20Numbers%20Document.pdf. The GATT characteristics were parsed from that PDF and converted to constants with names via:

```
String description = uuid.description.trim().toUpperCase().replace(' ', '_').replace('-', '_');
System.out.println("public static final UUID UUID_CHARACTERISTIC_" + description + " = UUID.fromString((String.format(AbstractBTLEDeviceSupport.BASE_UUID, \"" + uuid.uuid + "\")));");
```
2021-01-18 19:38:16 -05:00
..
actions update license headers 2021-01-10 23:38:13 +01:00
profiles update license headers 2021-01-10 23:38:13 +01:00
AbstractBTLEDeviceSupport.java update license headers 2021-01-10 23:38:13 +01:00
AbstractBTLEOperation.java update license headers 2021-01-10 23:38:13 +01:00
AbstractGattCallback.java update license headers 2021-01-10 23:38:13 +01:00
AbstractTransaction.java update license headers 2021-01-10 23:38:13 +01:00
BleNamesResolver.java update license headers 2021-01-10 23:38:13 +01:00
BLETypeConversions.java update license headers 2021-01-10 23:38:13 +01:00
BtLEAction.java update license headers 2021-01-10 23:38:13 +01:00
BTLEOperation.java update license headers 2021-01-10 23:38:13 +01:00
BtLEQueue.java update license headers 2021-01-10 23:38:13 +01:00
BtLEServerAction.java update license headers 2021-01-10 23:38:13 +01:00
GattCallback.java Update license headers 2019-12-15 22:09:02 +01:00
GattCharacteristic.java Update GATT characteristic list 2021-01-18 19:38:16 -05:00
GattDescriptor.java update license headers 2021-01-10 23:38:13 +01:00
GattListenerAction.java update license headers 2021-01-10 23:38:13 +01:00
GattServerCallback.java update license headers 2021-01-10 23:38:13 +01:00
GattService.java update license headers 2021-01-10 23:38:13 +01:00
ServerTransaction.java update license headers 2021-01-10 23:38:13 +01:00
ServerTransactionBuilder.java update license headers 2021-01-10 23:38:13 +01:00
Transaction.java update license headers 2021-01-10 23:38:13 +01:00
TransactionBuilder.java update license headers 2021-01-10 23:38:13 +01:00