prova

Fork of BLE_API by Bluetooth Low Energy

Committer:
andreasortino
Date:
Thu Sep 28 13:22:57 2017 +0000
Revision:
1209:b8e423d6b91b
Parent:
1183:1589830dbdb7
ertrfgnbc

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vcoubard 1131:692ddf04fc42 1 /* mbed Microcontroller Library
vcoubard 1131:692ddf04fc42 2 * Copyright (c) 2006-2013 ARM Limited
vcoubard 1131:692ddf04fc42 3 *
vcoubard 1131:692ddf04fc42 4 * Licensed under the Apache License, Version 2.0 (the "License");
vcoubard 1131:692ddf04fc42 5 * you may not use this file except in compliance with the License.
vcoubard 1131:692ddf04fc42 6 * You may obtain a copy of the License at
vcoubard 1131:692ddf04fc42 7 *
vcoubard 1131:692ddf04fc42 8 * http://www.apache.org/licenses/LICENSE-2.0
vcoubard 1131:692ddf04fc42 9 *
vcoubard 1131:692ddf04fc42 10 * Unless required by applicable law or agreed to in writing, software
vcoubard 1131:692ddf04fc42 11 * distributed under the License is distributed on an "AS IS" BASIS,
vcoubard 1131:692ddf04fc42 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
vcoubard 1131:692ddf04fc42 13 * See the License for the specific language governing permissions and
vcoubard 1131:692ddf04fc42 14 * limitations under the License.
vcoubard 1131:692ddf04fc42 15 */
vcoubard 1131:692ddf04fc42 16
vcoubard 1131:692ddf04fc42 17 #ifndef __GATT_CHARACTERISTIC_H__
vcoubard 1131:692ddf04fc42 18 #define __GATT_CHARACTERISTIC_H__
vcoubard 1131:692ddf04fc42 19
vcoubard 1131:692ddf04fc42 20 #include "Gap.h"
vcoubard 1131:692ddf04fc42 21 #include "SecurityManager.h"
vcoubard 1131:692ddf04fc42 22 #include "GattAttribute.h"
vcoubard 1131:692ddf04fc42 23 #include "GattCallbackParamTypes.h"
vcoubard 1131:692ddf04fc42 24 #include "FunctionPointerWithContext.h"
vcoubard 1131:692ddf04fc42 25
vcoubard 1131:692ddf04fc42 26 class GattCharacteristic {
vcoubard 1131:692ddf04fc42 27 public:
vcoubard 1131:692ddf04fc42 28 enum {
andreasortino 1209:b8e423d6b91b 29
vcoubard 1131:692ddf04fc42 30 UUID_BATTERY_LEVEL_STATE_CHAR = 0x2A1B,
vcoubard 1131:692ddf04fc42 31 UUID_BATTERY_POWER_STATE_CHAR = 0x2A1A,
vcoubard 1131:692ddf04fc42 32 UUID_REMOVABLE_CHAR = 0x2A3A,
vcoubard 1131:692ddf04fc42 33 UUID_SERVICE_REQUIRED_CHAR = 0x2A3B,
vcoubard 1131:692ddf04fc42 34 UUID_ALERT_CATEGORY_ID_CHAR = 0x2A43,
vcoubard 1131:692ddf04fc42 35 UUID_ALERT_CATEGORY_ID_BIT_MASK_CHAR = 0x2A42,
vcoubard 1131:692ddf04fc42 36 UUID_ALERT_LEVEL_CHAR = 0x2A06,
vcoubard 1131:692ddf04fc42 37 UUID_ALERT_NOTIFICATION_CONTROL_POINT_CHAR = 0x2A44,
vcoubard 1131:692ddf04fc42 38 UUID_ALERT_STATUS_CHAR = 0x2A3F,
vcoubard 1131:692ddf04fc42 39 UUID_BATTERY_LEVEL_CHAR = 0x2A19,
vcoubard 1131:692ddf04fc42 40 UUID_BLOOD_PRESSURE_FEATURE_CHAR = 0x2A49,
vcoubard 1131:692ddf04fc42 41 UUID_BLOOD_PRESSURE_MEASUREMENT_CHAR = 0x2A35,
vcoubard 1131:692ddf04fc42 42 UUID_BODY_SENSOR_LOCATION_CHAR = 0x2A38,
vcoubard 1131:692ddf04fc42 43 UUID_BOOT_KEYBOARD_INPUT_REPORT_CHAR = 0x2A22,
vcoubard 1131:692ddf04fc42 44 UUID_BOOT_KEYBOARD_OUTPUT_REPORT_CHAR = 0x2A32,
vcoubard 1131:692ddf04fc42 45 UUID_BOOT_MOUSE_INPUT_REPORT_CHAR = 0x2A33,
vcoubard 1131:692ddf04fc42 46 UUID_CURRENT_TIME_CHAR = 0x2A2B,
vcoubard 1131:692ddf04fc42 47 UUID_DATE_TIME_CHAR = 0x2A08,
vcoubard 1131:692ddf04fc42 48 UUID_DAY_DATE_TIME_CHAR = 0x2A0A,
vcoubard 1131:692ddf04fc42 49 UUID_DAY_OF_WEEK_CHAR = 0x2A09,
vcoubard 1131:692ddf04fc42 50 UUID_DST_OFFSET_CHAR = 0x2A0D,
vcoubard 1131:692ddf04fc42 51 UUID_EXACT_TIME_256_CHAR = 0x2A0C,
vcoubard 1131:692ddf04fc42 52 UUID_FIRMWARE_REVISION_STRING_CHAR = 0x2A26,
vcoubard 1131:692ddf04fc42 53 UUID_GLUCOSE_FEATURE_CHAR = 0x2A51,
vcoubard 1131:692ddf04fc42 54 UUID_GLUCOSE_MEASUREMENT_CHAR = 0x2A18,
vcoubard 1131:692ddf04fc42 55 UUID_GLUCOSE_MEASUREMENT_CONTEXT_CHAR = 0x2A34,
vcoubard 1131:692ddf04fc42 56 UUID_HARDWARE_REVISION_STRING_CHAR = 0x2A27,
vcoubard 1131:692ddf04fc42 57 UUID_HEART_RATE_CONTROL_POINT_CHAR = 0x2A39,
andreasortino 1209:b8e423d6b91b 58 UUID_HEART_RATE_MEASUREMENT_CHAR = 0x2A37, //Originale
andreasortino 1209:b8e423d6b91b 59
vcoubard 1131:692ddf04fc42 60 UUID_HID_CONTROL_POINT_CHAR = 0x2A4C,
vcoubard 1131:692ddf04fc42 61 UUID_HID_INFORMATION_CHAR = 0x2A4A,
vcoubard 1131:692ddf04fc42 62 UUID_HUMIDITY_CHAR = 0x2A6F,
vcoubard 1131:692ddf04fc42 63 UUID_IEEE_REGULATORY_CERTIFICATION_DATA_LIST_CHAR = 0x2A2A,
vcoubard 1131:692ddf04fc42 64 UUID_INTERMEDIATE_CUFF_PRESSURE_CHAR = 0x2A36,
vcoubard 1131:692ddf04fc42 65 UUID_INTERMEDIATE_TEMPERATURE_CHAR = 0x2A1E,
vcoubard 1131:692ddf04fc42 66 UUID_LOCAL_TIME_INFORMATION_CHAR = 0x2A0F,
vcoubard 1131:692ddf04fc42 67 UUID_MANUFACTURER_NAME_STRING_CHAR = 0x2A29,
vcoubard 1131:692ddf04fc42 68 UUID_MEASUREMENT_INTERVAL_CHAR = 0x2A21,
vcoubard 1131:692ddf04fc42 69 UUID_MODEL_NUMBER_STRING_CHAR = 0x2A24,
vcoubard 1131:692ddf04fc42 70 UUID_UNREAD_ALERT_CHAR = 0x2A45,
vcoubard 1131:692ddf04fc42 71 UUID_NEW_ALERT_CHAR = 0x2A46,
vcoubard 1131:692ddf04fc42 72 UUID_PNP_ID_CHAR = 0x2A50,
vcoubard 1131:692ddf04fc42 73 UUID_PRESSURE_CHAR = 0x2A6D,
vcoubard 1131:692ddf04fc42 74 UUID_PROTOCOL_MODE_CHAR = 0x2A4E,
vcoubard 1131:692ddf04fc42 75 UUID_RECORD_ACCESS_CONTROL_POINT_CHAR = 0x2A52,
vcoubard 1131:692ddf04fc42 76 UUID_REFERENCE_TIME_INFORMATION_CHAR = 0x2A14,
vcoubard 1131:692ddf04fc42 77 UUID_REPORT_CHAR = 0x2A4D,
vcoubard 1131:692ddf04fc42 78 UUID_REPORT_MAP_CHAR = 0x2A4B,
vcoubard 1131:692ddf04fc42 79 UUID_RINGER_CONTROL_POINT_CHAR = 0x2A40,
vcoubard 1131:692ddf04fc42 80 UUID_RINGER_SETTING_CHAR = 0x2A41,
vcoubard 1131:692ddf04fc42 81 UUID_SCAN_INTERVAL_WINDOW_CHAR = 0x2A4F,
vcoubard 1131:692ddf04fc42 82 UUID_SCAN_REFRESH_CHAR = 0x2A31,
vcoubard 1131:692ddf04fc42 83 UUID_SERIAL_NUMBER_STRING_CHAR = 0x2A25,
vcoubard 1131:692ddf04fc42 84 UUID_SOFTWARE_REVISION_STRING_CHAR = 0x2A28,
vcoubard 1131:692ddf04fc42 85 UUID_SUPPORTED_NEW_ALERT_CATEGORY_CHAR = 0x2A47,
vcoubard 1131:692ddf04fc42 86 UUID_SUPPORTED_UNREAD_ALERT_CATEGORY_CHAR = 0x2A48,
vcoubard 1131:692ddf04fc42 87 UUID_SYSTEM_ID_CHAR = 0x2A23,
vcoubard 1131:692ddf04fc42 88 UUID_TEMPERATURE_CHAR = 0x2A6E,
vcoubard 1131:692ddf04fc42 89 UUID_TEMPERATURE_MEASUREMENT_CHAR = 0x2A1C,
vcoubard 1131:692ddf04fc42 90 UUID_TEMPERATURE_TYPE_CHAR = 0x2A1D,
vcoubard 1131:692ddf04fc42 91 UUID_TIME_ACCURACY_CHAR = 0x2A12,
vcoubard 1131:692ddf04fc42 92 UUID_TIME_SOURCE_CHAR = 0x2A13,
vcoubard 1131:692ddf04fc42 93 UUID_TIME_UPDATE_CONTROL_POINT_CHAR = 0x2A16,
vcoubard 1131:692ddf04fc42 94 UUID_TIME_UPDATE_STATE_CHAR = 0x2A17,
vcoubard 1131:692ddf04fc42 95 UUID_TIME_WITH_DST_CHAR = 0x2A11,
vcoubard 1131:692ddf04fc42 96 UUID_TIME_ZONE_CHAR = 0x2A0E,
vcoubard 1131:692ddf04fc42 97 UUID_TX_POWER_LEVEL_CHAR = 0x2A07,
vcoubard 1131:692ddf04fc42 98 UUID_CSC_FEATURE_CHAR = 0x2A5C,
vcoubard 1131:692ddf04fc42 99 UUID_CSC_MEASUREMENT_CHAR = 0x2A5B,
vcoubard 1131:692ddf04fc42 100 UUID_RSC_FEATURE_CHAR = 0x2A54,
vcoubard 1131:692ddf04fc42 101 UUID_RSC_MEASUREMENT_CHAR = 0x2A53
vcoubard 1131:692ddf04fc42 102 };
vcoubard 1131:692ddf04fc42 103
vcoubard 1183:1589830dbdb7 104 /**
vcoubard 1183:1589830dbdb7 105 * @brief Standard GATT characteristic presentation format unit types.
vcoubard 1183:1589830dbdb7 106 * These unit types are used to describe what the raw numeric
vcoubard 1183:1589830dbdb7 107 * data in a characteristic actually represents.
vcoubard 1183:1589830dbdb7 108 *
vcoubard 1183:1589830dbdb7 109 * @note See https://developer.bluetooth.org/gatt/units/Pages/default.aspx
vcoubard 1183:1589830dbdb7 110 */
vcoubard 1131:692ddf04fc42 111 enum {
vcoubard 1131:692ddf04fc42 112 BLE_GATT_UNIT_NONE = 0x2700, /**< No specified unit type. */
vcoubard 1131:692ddf04fc42 113 BLE_GATT_UNIT_LENGTH_METRE = 0x2701, /**< Length, metre. */
vcoubard 1131:692ddf04fc42 114 BLE_GATT_UNIT_MASS_KILOGRAM = 0x2702, /**< Mass, kilogram. */
vcoubard 1131:692ddf04fc42 115 BLE_GATT_UNIT_TIME_SECOND = 0x2703, /**< Time, second. */
vcoubard 1131:692ddf04fc42 116 BLE_GATT_UNIT_ELECTRIC_CURRENT_AMPERE = 0x2704, /**< Electric current, ampere. */
vcoubard 1131:692ddf04fc42 117 BLE_GATT_UNIT_THERMODYNAMIC_TEMPERATURE_KELVIN = 0x2705, /**< Thermodynamic temperature, kelvin. */
vcoubard 1131:692ddf04fc42 118 BLE_GATT_UNIT_AMOUNT_OF_SUBSTANCE_MOLE = 0x2706, /**< Amount of substance, mole. */
vcoubard 1131:692ddf04fc42 119 BLE_GATT_UNIT_LUMINOUS_INTENSITY_CANDELA = 0x2707, /**< Luminous intensity, candela. */
vcoubard 1131:692ddf04fc42 120 BLE_GATT_UNIT_AREA_SQUARE_METRES = 0x2710, /**< Area, square metres. */
vcoubard 1131:692ddf04fc42 121 BLE_GATT_UNIT_VOLUME_CUBIC_METRES = 0x2711, /**< Volume, cubic metres. */
vcoubard 1131:692ddf04fc42 122 BLE_GATT_UNIT_VELOCITY_METRES_PER_SECOND = 0x2712, /**< Velocity, metres per second. */
vcoubard 1131:692ddf04fc42 123 BLE_GATT_UNIT_ACCELERATION_METRES_PER_SECOND_SQUARED = 0x2713, /**< Acceleration, metres per second squared. */
vcoubard 1131:692ddf04fc42 124 BLE_GATT_UNIT_WAVENUMBER_RECIPROCAL_METRE = 0x2714, /**< Wave number reciprocal, metre. */
vcoubard 1131:692ddf04fc42 125 BLE_GATT_UNIT_DENSITY_KILOGRAM_PER_CUBIC_METRE = 0x2715, /**< Density, kilogram per cubic metre. */
vcoubard 1131:692ddf04fc42 126 BLE_GATT_UNIT_SURFACE_DENSITY_KILOGRAM_PER_SQUARE_METRE = 0x2716, /**< */
vcoubard 1131:692ddf04fc42 127 BLE_GATT_UNIT_SPECIFIC_VOLUME_CUBIC_METRE_PER_KILOGRAM = 0x2717, /**< */
vcoubard 1131:692ddf04fc42 128 BLE_GATT_UNIT_CURRENT_DENSITY_AMPERE_PER_SQUARE_METRE = 0x2718, /**< */
vcoubard 1131:692ddf04fc42 129 BLE_GATT_UNIT_MAGNETIC_FIELD_STRENGTH_AMPERE_PER_METRE = 0x2719, /**< Magnetic field strength, ampere per metre. */
vcoubard 1131:692ddf04fc42 130 BLE_GATT_UNIT_AMOUNT_CONCENTRATION_MOLE_PER_CUBIC_METRE = 0x271A, /**< */
vcoubard 1131:692ddf04fc42 131 BLE_GATT_UNIT_MASS_CONCENTRATION_KILOGRAM_PER_CUBIC_METRE = 0x271B, /**< */
vcoubard 1131:692ddf04fc42 132 BLE_GATT_UNIT_LUMINANCE_CANDELA_PER_SQUARE_METRE = 0x271C, /**< */
vcoubard 1131:692ddf04fc42 133 BLE_GATT_UNIT_REFRACTIVE_INDEX = 0x271D, /**< */
vcoubard 1131:692ddf04fc42 134 BLE_GATT_UNIT_RELATIVE_PERMEABILITY = 0x271E, /**< */
vcoubard 1131:692ddf04fc42 135 BLE_GATT_UNIT_PLANE_ANGLE_RADIAN = 0x2720, /**< */
vcoubard 1131:692ddf04fc42 136 BLE_GATT_UNIT_SOLID_ANGLE_STERADIAN = 0x2721, /**< */
vcoubard 1131:692ddf04fc42 137 BLE_GATT_UNIT_FREQUENCY_HERTZ = 0x2722, /**< Frequency, hertz. */
vcoubard 1131:692ddf04fc42 138 BLE_GATT_UNIT_FORCE_NEWTON = 0x2723, /**< Force, newton. */
vcoubard 1131:692ddf04fc42 139 BLE_GATT_UNIT_PRESSURE_PASCAL = 0x2724, /**< Pressure, pascal. */
vcoubard 1131:692ddf04fc42 140 BLE_GATT_UNIT_ENERGY_JOULE = 0x2725, /**< Energy, joule. */
vcoubard 1131:692ddf04fc42 141 BLE_GATT_UNIT_POWER_WATT = 0x2726, /**< Power, watt. */
vcoubard 1131:692ddf04fc42 142 BLE_GATT_UNIT_ELECTRIC_CHARGE_COULOMB = 0x2727, /**< Electrical charge, coulomb. */
vcoubard 1131:692ddf04fc42 143 BLE_GATT_UNIT_ELECTRIC_POTENTIAL_DIFFERENCE_VOLT = 0x2728, /**< Electrical potential difference, voltage. */
vcoubard 1131:692ddf04fc42 144 BLE_GATT_UNIT_CAPACITANCE_FARAD = 0x2729, /**< */
vcoubard 1131:692ddf04fc42 145 BLE_GATT_UNIT_ELECTRIC_RESISTANCE_OHM = 0x272A, /**< */
vcoubard 1131:692ddf04fc42 146 BLE_GATT_UNIT_ELECTRIC_CONDUCTANCE_SIEMENS = 0x272B, /**< */
vcoubard 1131:692ddf04fc42 147 BLE_GATT_UNIT_MAGNETIC_FLEX_WEBER = 0x272C, /**< */
vcoubard 1131:692ddf04fc42 148 BLE_GATT_UNIT_MAGNETIC_FLEX_DENSITY_TESLA = 0x272D, /**< */
vcoubard 1131:692ddf04fc42 149 BLE_GATT_UNIT_INDUCTANCE_HENRY = 0x272E, /**< */
vcoubard 1131:692ddf04fc42 150 BLE_GATT_UNIT_THERMODYNAMIC_TEMPERATURE_DEGREE_CELSIUS = 0x272F, /**< */
vcoubard 1131:692ddf04fc42 151 BLE_GATT_UNIT_LUMINOUS_FLUX_LUMEN = 0x2730, /**< */
vcoubard 1131:692ddf04fc42 152 BLE_GATT_UNIT_ILLUMINANCE_LUX = 0x2731, /**< */
vcoubard 1131:692ddf04fc42 153 BLE_GATT_UNIT_ACTIVITY_REFERRED_TO_A_RADIONUCLIDE_BECQUEREL = 0x2732, /**< */
vcoubard 1131:692ddf04fc42 154 BLE_GATT_UNIT_ABSORBED_DOSE_GRAY = 0x2733, /**< */
vcoubard 1131:692ddf04fc42 155 BLE_GATT_UNIT_DOSE_EQUIVALENT_SIEVERT = 0x2734, /**< */
vcoubard 1131:692ddf04fc42 156 BLE_GATT_UNIT_CATALYTIC_ACTIVITY_KATAL = 0x2735, /**< */
vcoubard 1131:692ddf04fc42 157 BLE_GATT_UNIT_DYNAMIC_VISCOSITY_PASCAL_SECOND = 0x2740, /**< */
vcoubard 1131:692ddf04fc42 158 BLE_GATT_UNIT_MOMENT_OF_FORCE_NEWTON_METRE = 0x2741, /**< */
vcoubard 1131:692ddf04fc42 159 BLE_GATT_UNIT_SURFACE_TENSION_NEWTON_PER_METRE = 0x2742, /**< */
vcoubard 1131:692ddf04fc42 160 BLE_GATT_UNIT_ANGULAR_VELOCITY_RADIAN_PER_SECOND = 0x2743, /**< */
vcoubard 1131:692ddf04fc42 161 BLE_GATT_UNIT_ANGULAR_ACCELERATION_RADIAN_PER_SECOND_SQUARED = 0x2744, /**< */
vcoubard 1131:692ddf04fc42 162 BLE_GATT_UNIT_HEAT_FLUX_DENSITY_WATT_PER_SQUARE_METRE = 0x2745, /**< */
vcoubard 1131:692ddf04fc42 163 BLE_GATT_UNIT_HEAT_CAPACITY_JOULE_PER_KELVIN = 0x2746, /**< */
vcoubard 1131:692ddf04fc42 164 BLE_GATT_UNIT_SPECIFIC_HEAT_CAPACITY_JOULE_PER_KILOGRAM_KELVIN = 0x2747, /**< */
vcoubard 1131:692ddf04fc42 165 BLE_GATT_UNIT_SPECIFIC_ENERGY_JOULE_PER_KILOGRAM = 0x2748, /**< */
vcoubard 1131:692ddf04fc42 166 BLE_GATT_UNIT_THERMAL_CONDUCTIVITY_WATT_PER_METRE_KELVIN = 0x2749, /**< */
vcoubard 1131:692ddf04fc42 167 BLE_GATT_UNIT_ENERGY_DENSITY_JOULE_PER_CUBIC_METRE = 0x274A, /**< */
vcoubard 1131:692ddf04fc42 168 BLE_GATT_UNIT_ELECTRIC_FIELD_STRENGTH_VOLT_PER_METRE = 0x274B, /**< */
vcoubard 1131:692ddf04fc42 169 BLE_GATT_UNIT_ELECTRIC_CHARGE_DENSITY_COULOMB_PER_CUBIC_METRE = 0x274C, /**< */
vcoubard 1131:692ddf04fc42 170 BLE_GATT_UNIT_SURFACE_CHARGE_DENSITY_COULOMB_PER_SQUARE_METRE = 0x274D, /**< */
vcoubard 1131:692ddf04fc42 171 BLE_GATT_UNIT_ELECTRIC_FLUX_DENSITY_COULOMB_PER_SQUARE_METRE = 0x274E, /**< */
vcoubard 1131:692ddf04fc42 172 BLE_GATT_UNIT_PERMITTIVITY_FARAD_PER_METRE = 0x274F, /**< */
vcoubard 1131:692ddf04fc42 173 BLE_GATT_UNIT_PERMEABILITY_HENRY_PER_METRE = 0x2750, /**< */
vcoubard 1131:692ddf04fc42 174 BLE_GATT_UNIT_MOLAR_ENERGY_JOULE_PER_MOLE = 0x2751, /**< */
vcoubard 1131:692ddf04fc42 175 BLE_GATT_UNIT_MOLAR_ENTROPY_JOULE_PER_MOLE_KELVIN = 0x2752, /**< */
vcoubard 1131:692ddf04fc42 176 BLE_GATT_UNIT_EXPOSURE_COULOMB_PER_KILOGRAM = 0x2753, /**< */
vcoubard 1131:692ddf04fc42 177 BLE_GATT_UNIT_ABSORBED_DOSE_RATE_GRAY_PER_SECOND = 0x2754, /**< */
vcoubard 1131:692ddf04fc42 178 BLE_GATT_UNIT_RADIANT_INTENSITY_WATT_PER_STERADIAN = 0x2755, /**< */
vcoubard 1131:692ddf04fc42 179 BLE_GATT_UNIT_RADIANCE_WATT_PER_SQUARE_METRE_STERADIAN = 0x2756, /**< */
vcoubard 1131:692ddf04fc42 180 BLE_GATT_UNIT_CATALYTIC_ACTIVITY_CONCENTRATION_KATAL_PER_CUBIC_METRE = 0x2757, /**< */
vcoubard 1131:692ddf04fc42 181 BLE_GATT_UNIT_TIME_MINUTE = 0x2760, /**< Time, minute. */
vcoubard 1131:692ddf04fc42 182 BLE_GATT_UNIT_TIME_HOUR = 0x2761, /**< Time, hour. */
vcoubard 1131:692ddf04fc42 183 BLE_GATT_UNIT_TIME_DAY = 0x2762, /**< Time, day. */
vcoubard 1131:692ddf04fc42 184 BLE_GATT_UNIT_PLANE_ANGLE_DEGREE = 0x2763, /**< */
vcoubard 1131:692ddf04fc42 185 BLE_GATT_UNIT_PLANE_ANGLE_MINUTE = 0x2764, /**< */
vcoubard 1131:692ddf04fc42 186 BLE_GATT_UNIT_PLANE_ANGLE_SECOND = 0x2765, /**< */
vcoubard 1131:692ddf04fc42 187 BLE_GATT_UNIT_AREA_HECTARE = 0x2766, /**< */
vcoubard 1131:692ddf04fc42 188 BLE_GATT_UNIT_VOLUME_LITRE = 0x2767, /**< */
vcoubard 1131:692ddf04fc42 189 BLE_GATT_UNIT_MASS_TONNE = 0x2768, /**< */
vcoubard 1131:692ddf04fc42 190 BLE_GATT_UNIT_PRESSURE_BAR = 0x2780, /**< Pressure, bar. */
vcoubard 1131:692ddf04fc42 191 BLE_GATT_UNIT_PRESSURE_MILLIMETRE_OF_MERCURY = 0x2781, /**< Pressure, millimetre of mercury. */
vcoubard 1131:692ddf04fc42 192 BLE_GATT_UNIT_LENGTH_ANGSTROM = 0x2782, /**< */
vcoubard 1131:692ddf04fc42 193 BLE_GATT_UNIT_LENGTH_NAUTICAL_MILE = 0x2783, /**< */
vcoubard 1131:692ddf04fc42 194 BLE_GATT_UNIT_AREA_BARN = 0x2784, /**< */
vcoubard 1131:692ddf04fc42 195 BLE_GATT_UNIT_VELOCITY_KNOT = 0x2785, /**< */
vcoubard 1131:692ddf04fc42 196 BLE_GATT_UNIT_LOGARITHMIC_RADIO_QUANTITY_NEPER = 0x2786, /**< */
vcoubard 1131:692ddf04fc42 197 BLE_GATT_UNIT_LOGARITHMIC_RADIO_QUANTITY_BEL = 0x2787, /**< */
vcoubard 1131:692ddf04fc42 198 BLE_GATT_UNIT_LENGTH_YARD = 0x27A0, /**< Length, yard. */
vcoubard 1131:692ddf04fc42 199 BLE_GATT_UNIT_LENGTH_PARSEC = 0x27A1, /**< Length, parsec. */
vcoubard 1131:692ddf04fc42 200 BLE_GATT_UNIT_LENGTH_INCH = 0x27A2, /**< Length, inch. */
vcoubard 1131:692ddf04fc42 201 BLE_GATT_UNIT_LENGTH_FOOT = 0x27A3, /**< Length, foot. */
vcoubard 1131:692ddf04fc42 202 BLE_GATT_UNIT_LENGTH_MILE = 0x27A4, /**< Length, mile. */
vcoubard 1131:692ddf04fc42 203 BLE_GATT_UNIT_PRESSURE_POUND_FORCE_PER_SQUARE_INCH = 0x27A5, /**< */
vcoubard 1131:692ddf04fc42 204 BLE_GATT_UNIT_VELOCITY_KILOMETRE_PER_HOUR = 0x27A6, /**< Velocity, kilometre per hour. */
vcoubard 1131:692ddf04fc42 205 BLE_GATT_UNIT_VELOCITY_MILE_PER_HOUR = 0x27A7, /**< Velocity, mile per hour. */
vcoubard 1131:692ddf04fc42 206 BLE_GATT_UNIT_ANGULAR_VELOCITY_REVOLUTION_PER_MINUTE = 0x27A8, /**< Angular Velocity, revolution per minute. */
vcoubard 1131:692ddf04fc42 207 BLE_GATT_UNIT_ENERGY_GRAM_CALORIE = 0x27A9, /**< Energy, gram calorie. */
vcoubard 1131:692ddf04fc42 208 BLE_GATT_UNIT_ENERGY_KILOGRAM_CALORIE = 0x27AA, /**< Energy, kilogram calorie. */
vcoubard 1131:692ddf04fc42 209 BLE_GATT_UNIT_ENERGY_KILOWATT_HOUR = 0x27AB, /**< Energy, killowatt hour. */
vcoubard 1131:692ddf04fc42 210 BLE_GATT_UNIT_THERMODYNAMIC_TEMPERATURE_DEGREE_FAHRENHEIT = 0x27AC, /**< */
vcoubard 1131:692ddf04fc42 211 BLE_GATT_UNIT_PERCENTAGE = 0x27AD, /**< Percentage. */
vcoubard 1131:692ddf04fc42 212 BLE_GATT_UNIT_PER_MILLE = 0x27AE, /**< */
vcoubard 1131:692ddf04fc42 213 BLE_GATT_UNIT_PERIOD_BEATS_PER_MINUTE = 0x27AF, /**< */
vcoubard 1131:692ddf04fc42 214 BLE_GATT_UNIT_ELECTRIC_CHARGE_AMPERE_HOURS = 0x27B0, /**< */
vcoubard 1131:692ddf04fc42 215 BLE_GATT_UNIT_MASS_DENSITY_MILLIGRAM_PER_DECILITRE = 0x27B1, /**< */
vcoubard 1131:692ddf04fc42 216 BLE_GATT_UNIT_MASS_DENSITY_MILLIMOLE_PER_LITRE = 0x27B2, /**< */
vcoubard 1131:692ddf04fc42 217 BLE_GATT_UNIT_TIME_YEAR = 0x27B3, /**< Time, year. */
vcoubard 1131:692ddf04fc42 218 BLE_GATT_UNIT_TIME_MONTH = 0x27B4, /**< Time, month. */
vcoubard 1131:692ddf04fc42 219 BLE_GATT_UNIT_CONCENTRATION_COUNT_PER_CUBIC_METRE = 0x27B5, /**< */
vcoubard 1131:692ddf04fc42 220 BLE_GATT_UNIT_IRRADIANCE_WATT_PER_SQUARE_METRE = 0x27B6 /**< */
vcoubard 1131:692ddf04fc42 221 };
vcoubard 1131:692ddf04fc42 222
vcoubard 1183:1589830dbdb7 223 /**
vcoubard 1183:1589830dbdb7 224 * @brief Standard GATT number types.
vcoubard 1183:1589830dbdb7 225 *
vcoubard 1183:1589830dbdb7 226 * @note See Bluetooth Specification 4.0 (Vol. 3), Part G, Section 3.3.3.5.2.
vcoubard 1183:1589830dbdb7 227 *
vcoubard 1183:1589830dbdb7 228 * @note See http://developer.bluetooth.org/gatt/descriptors/Pages/DescriptorViewer.aspx?u=org.bluetooth.descriptor.gatt.characteristic_presentation_format.xml
vcoubard 1183:1589830dbdb7 229 */
vcoubard 1131:692ddf04fc42 230 enum {
vcoubard 1131:692ddf04fc42 231 BLE_GATT_FORMAT_RFU = 0x00, /**< Reserved for future use. */
vcoubard 1131:692ddf04fc42 232 BLE_GATT_FORMAT_BOOLEAN = 0x01, /**< Boolean. */
vcoubard 1131:692ddf04fc42 233 BLE_GATT_FORMAT_2BIT = 0x02, /**< Unsigned 2-bit integer. */
vcoubard 1131:692ddf04fc42 234 BLE_GATT_FORMAT_NIBBLE = 0x03, /**< Unsigned 4-bit integer. */
vcoubard 1131:692ddf04fc42 235 BLE_GATT_FORMAT_UINT8 = 0x04, /**< Unsigned 8-bit integer. */
vcoubard 1131:692ddf04fc42 236 BLE_GATT_FORMAT_UINT12 = 0x05, /**< Unsigned 12-bit integer. */
vcoubard 1131:692ddf04fc42 237 BLE_GATT_FORMAT_UINT16 = 0x06, /**< Unsigned 16-bit integer. */
vcoubard 1131:692ddf04fc42 238 BLE_GATT_FORMAT_UINT24 = 0x07, /**< Unsigned 24-bit integer. */
vcoubard 1131:692ddf04fc42 239 BLE_GATT_FORMAT_UINT32 = 0x08, /**< Unsigned 32-bit integer. */
vcoubard 1131:692ddf04fc42 240 BLE_GATT_FORMAT_UINT48 = 0x09, /**< Unsigned 48-bit integer. */
vcoubard 1131:692ddf04fc42 241 BLE_GATT_FORMAT_UINT64 = 0x0A, /**< Unsigned 64-bit integer. */
vcoubard 1131:692ddf04fc42 242 BLE_GATT_FORMAT_UINT128 = 0x0B, /**< Unsigned 128-bit integer. */
vcoubard 1131:692ddf04fc42 243 BLE_GATT_FORMAT_SINT8 = 0x0C, /**< Signed 2-bit integer. */
vcoubard 1131:692ddf04fc42 244 BLE_GATT_FORMAT_SINT12 = 0x0D, /**< Signed 12-bit integer. */
vcoubard 1131:692ddf04fc42 245 BLE_GATT_FORMAT_SINT16 = 0x0E, /**< Signed 16-bit integer. */
vcoubard 1131:692ddf04fc42 246 BLE_GATT_FORMAT_SINT24 = 0x0F, /**< Signed 24-bit integer. */
vcoubard 1131:692ddf04fc42 247 BLE_GATT_FORMAT_SINT32 = 0x10, /**< Signed 32-bit integer. */
vcoubard 1131:692ddf04fc42 248 BLE_GATT_FORMAT_SINT48 = 0x11, /**< Signed 48-bit integer. */
vcoubard 1131:692ddf04fc42 249 BLE_GATT_FORMAT_SINT64 = 0x12, /**< Signed 64-bit integer. */
vcoubard 1131:692ddf04fc42 250 BLE_GATT_FORMAT_SINT128 = 0x13, /**< Signed 128-bit integer. */
vcoubard 1131:692ddf04fc42 251 BLE_GATT_FORMAT_FLOAT32 = 0x14, /**< IEEE-754 32-bit floating point. */
vcoubard 1131:692ddf04fc42 252 BLE_GATT_FORMAT_FLOAT64 = 0x15, /**< IEEE-754 64-bit floating point. */
vcoubard 1131:692ddf04fc42 253 BLE_GATT_FORMAT_SFLOAT = 0x16, /**< IEEE-11073 16-bit SFLOAT. */
vcoubard 1131:692ddf04fc42 254 BLE_GATT_FORMAT_FLOAT = 0x17, /**< IEEE-11073 32-bit FLOAT. */
vcoubard 1131:692ddf04fc42 255 BLE_GATT_FORMAT_DUINT16 = 0x18, /**< IEEE-20601 format. */
vcoubard 1131:692ddf04fc42 256 BLE_GATT_FORMAT_UTF8S = 0x19, /**< UTF-8 string. */
vcoubard 1131:692ddf04fc42 257 BLE_GATT_FORMAT_UTF16S = 0x1A, /**< UTF-16 string. */
vcoubard 1131:692ddf04fc42 258 BLE_GATT_FORMAT_STRUCT = 0x1B /**< Opaque Structure. */
vcoubard 1131:692ddf04fc42 259 };
vcoubard 1131:692ddf04fc42 260
vcoubard 1131:692ddf04fc42 261 /*!
vcoubard 1183:1589830dbdb7 262 * @brief Standard GATT characteristic properties.
vcoubard 1183:1589830dbdb7 263 *
vcoubard 1183:1589830dbdb7 264 * @note See Bluetooth Specification 4.0 (Vol. 3), Part G, Section 3.3.1.1
vcoubard 1183:1589830dbdb7 265 * and Section 3.3.3.1 for Extended Properties.
vcoubard 1183:1589830dbdb7 266 */
vcoubard 1131:692ddf04fc42 267 enum Properties_t {
vcoubard 1131:692ddf04fc42 268 BLE_GATT_CHAR_PROPERTIES_NONE = 0x00,
vcoubard 1131:692ddf04fc42 269 BLE_GATT_CHAR_PROPERTIES_BROADCAST = 0x01, /**< Permits broadcasts of the characteristic value using the Server Characteristic Configuration descriptor. */
vcoubard 1131:692ddf04fc42 270 BLE_GATT_CHAR_PROPERTIES_READ = 0x02, /**< Permits reads of the characteristic value. */
vcoubard 1131:692ddf04fc42 271 BLE_GATT_CHAR_PROPERTIES_WRITE_WITHOUT_RESPONSE = 0x04, /**< Permits writes of the characteristic value without response. */
vcoubard 1131:692ddf04fc42 272 BLE_GATT_CHAR_PROPERTIES_WRITE = 0x08, /**< Permits writes of the characteristic value with response. */
vcoubard 1131:692ddf04fc42 273 BLE_GATT_CHAR_PROPERTIES_NOTIFY = 0x10, /**< Permits notifications of a characteristic value without acknowledgment. */
vcoubard 1131:692ddf04fc42 274 BLE_GATT_CHAR_PROPERTIES_INDICATE = 0x20, /**< Permits indications of a characteristic value with acknowledgment. */
vcoubard 1131:692ddf04fc42 275 BLE_GATT_CHAR_PROPERTIES_AUTHENTICATED_SIGNED_WRITES = 0x40, /**< Permits signed writes to the characteristic value. */
vcoubard 1131:692ddf04fc42 276 BLE_GATT_CHAR_PROPERTIES_EXTENDED_PROPERTIES = 0x80 /**< Additional characteristic properties are defined in the Characteristic Extended Properties descriptor */
vcoubard 1131:692ddf04fc42 277 };
vcoubard 1131:692ddf04fc42 278
vcoubard 1183:1589830dbdb7 279 /**
vcoubard 1183:1589830dbdb7 280 * @brief GATT presentation format wrapper.
vcoubard 1183:1589830dbdb7 281 *
vcoubard 1183:1589830dbdb7 282 * @note See Bluetooth Specification 4.0 (Vol. 3), Part G, Section 3.3.3.5.
vcoubard 1183:1589830dbdb7 283 *
vcoubard 1183:1589830dbdb7 284 * @note See https://developer.bluetooth.org/gatt/descriptors/Pages/DescriptorViewer.aspx?u=org.bluetooth.descriptor.gatt.characteristic_presentation_format.xml
vcoubard 1183:1589830dbdb7 285 */
vcoubard 1131:692ddf04fc42 286 struct PresentationFormat_t {
vcoubard 1183:1589830dbdb7 287 uint8_t gatt_format; /**< Format of the value. */
vcoubard 1131:692ddf04fc42 288 int8_t exponent; /**< Exponent for integer data types. Example: if Exponent = -3 and the char value is 3892, the actual value is 3.892 */
vcoubard 1183:1589830dbdb7 289 uint16_t gatt_unit; /**< UUID from Bluetooth Assigned Numbers. */
vcoubard 1183:1589830dbdb7 290 uint8_t gatt_namespace; /**< Namespace from Bluetooth Assigned Numbers, normally '1'. */
vcoubard 1183:1589830dbdb7 291 uint16_t gatt_nsdesc; /**< Namespace description from Bluetooth Assigned Numbers, normally '0'. */
vcoubard 1131:692ddf04fc42 292 };
vcoubard 1131:692ddf04fc42 293
vcoubard 1131:692ddf04fc42 294 /**
vcoubard 1183:1589830dbdb7 295 * @brief Creates a new GattCharacteristic using the specified 16-bit
vcoubard 1183:1589830dbdb7 296 * UUID, value length, and properties.
vcoubard 1131:692ddf04fc42 297 *
vcoubard 1183:1589830dbdb7 298 * @param[in] uuid
vcoubard 1183:1589830dbdb7 299 * The UUID to use for this characteristic.
vcoubard 1183:1589830dbdb7 300 * @param[in] valuePtr
vcoubard 1183:1589830dbdb7 301 * The memory holding the initial value. The value is copied
vcoubard 1183:1589830dbdb7 302 * into the stack when the enclosing service is added, and
vcoubard 1183:1589830dbdb7 303 * is thereafter maintained internally by the stack.
vcoubard 1183:1589830dbdb7 304 * @param[in] len
vcoubard 1183:1589830dbdb7 305 * The length in bytes of this characteristic's value.
vcoubard 1183:1589830dbdb7 306 * @param[in] maxLen
vcoubard 1183:1589830dbdb7 307 * The max length in bytes of this characteristic's value.
vcoubard 1183:1589830dbdb7 308 * @param[in] props
vcoubard 1183:1589830dbdb7 309 * The 8-bit field containing the characteristic's properties.
vcoubard 1183:1589830dbdb7 310 * @param[in] descriptors
vcoubard 1183:1589830dbdb7 311 * A pointer to an array of descriptors to be included within
vcoubard 1183:1589830dbdb7 312 * this characteristic. The memory for the descriptor array is
vcoubard 1183:1589830dbdb7 313 * owned by the caller, and should remain valid at least until
vcoubard 1183:1589830dbdb7 314 * the enclosing service is added to the GATT table.
vcoubard 1183:1589830dbdb7 315 * @param[in] numDescriptors
vcoubard 1183:1589830dbdb7 316 * The number of descriptors in the previous array.
vcoubard 1183:1589830dbdb7 317 * @param[in] hasVariableLen
vcoubard 1183:1589830dbdb7 318 * Whether the attribute's value length changes over time.
vcoubard 1131:692ddf04fc42 319 *
vcoubard 1183:1589830dbdb7 320 * @note The UUID value must be unique in the service and is normally >1.
vcoubard 1183:1589830dbdb7 321 *
vcoubard 1183:1589830dbdb7 322 * @note If valuePtr == NULL, length == 0, and properties == READ
vcoubard 1131:692ddf04fc42 323 * for the value attribute of a characteristic, then that particular
vcoubard 1131:692ddf04fc42 324 * characteristic may be considered optional and dropped while
vcoubard 1131:692ddf04fc42 325 * instantiating the service with the underlying BLE stack.
vcoubard 1131:692ddf04fc42 326 */
vcoubard 1131:692ddf04fc42 327 GattCharacteristic(const UUID &uuid,
vcoubard 1131:692ddf04fc42 328 uint8_t *valuePtr = NULL,
vcoubard 1131:692ddf04fc42 329 uint16_t len = 0,
vcoubard 1131:692ddf04fc42 330 uint16_t maxLen = 0,
vcoubard 1131:692ddf04fc42 331 uint8_t props = BLE_GATT_CHAR_PROPERTIES_NONE,
vcoubard 1131:692ddf04fc42 332 GattAttribute *descriptors[] = NULL,
vcoubard 1132:6362b7c2fdff 333 unsigned numDescriptors = 0,
vcoubard 1132:6362b7c2fdff 334 bool hasVariableLen = true) :
vcoubard 1132:6362b7c2fdff 335 _valueAttribute(uuid, valuePtr, len, maxLen, hasVariableLen),
vcoubard 1131:692ddf04fc42 336 _properties(props),
vcoubard 1131:692ddf04fc42 337 _requiredSecurity(SecurityManager::SECURITY_MODE_ENCRYPTION_OPEN_LINK),
vcoubard 1131:692ddf04fc42 338 _descriptors(descriptors),
vcoubard 1131:692ddf04fc42 339 _descriptorCount(numDescriptors),
vcoubard 1131:692ddf04fc42 340 enabledReadAuthorization(false),
vcoubard 1131:692ddf04fc42 341 enabledWriteAuthorization(false),
vcoubard 1131:692ddf04fc42 342 readAuthorizationCallback(),
vcoubard 1131:692ddf04fc42 343 writeAuthorizationCallback() {
vcoubard 1131:692ddf04fc42 344 /* empty */
vcoubard 1131:692ddf04fc42 345 }
vcoubard 1131:692ddf04fc42 346
vcoubard 1131:692ddf04fc42 347 public:
vcoubard 1131:692ddf04fc42 348 /**
vcoubard 1183:1589830dbdb7 349 * Set up the minimum security (mode and level) requirements for access to
vcoubard 1183:1589830dbdb7 350 * the characteristic's value attribute.
vcoubard 1131:692ddf04fc42 351 *
vcoubard 1183:1589830dbdb7 352 * @param[in] securityMode
vcoubard 1183:1589830dbdb7 353 * Can be one of encryption or signing, with or without
vcoubard 1183:1589830dbdb7 354 * protection for man in the middle attacks (MITM).
vcoubard 1131:692ddf04fc42 355 */
vcoubard 1131:692ddf04fc42 356 void requireSecurity(SecurityManager::SecurityMode_t securityMode) {
vcoubard 1131:692ddf04fc42 357 _requiredSecurity = securityMode;
vcoubard 1131:692ddf04fc42 358 }
vcoubard 1131:692ddf04fc42 359
vcoubard 1131:692ddf04fc42 360 public:
vcoubard 1131:692ddf04fc42 361 /**
vcoubard 1183:1589830dbdb7 362 * Set up callback that will be triggered before the GATT Client is allowed
vcoubard 1183:1589830dbdb7 363 * to write this characteristic. The handler will determine the
vcoubard 1183:1589830dbdb7 364 * authorization reply for the write.
vcoubard 1183:1589830dbdb7 365 *
vcoubard 1183:1589830dbdb7 366 * @param[in] callback
vcoubard 1183:1589830dbdb7 367 * Event handler being registered.
vcoubard 1131:692ddf04fc42 368 */
vcoubard 1131:692ddf04fc42 369 void setWriteAuthorizationCallback(void (*callback)(GattWriteAuthCallbackParams *)) {
vcoubard 1131:692ddf04fc42 370 writeAuthorizationCallback.attach(callback);
vcoubard 1131:692ddf04fc42 371 enabledWriteAuthorization = true;
vcoubard 1131:692ddf04fc42 372 }
vcoubard 1183:1589830dbdb7 373
vcoubard 1183:1589830dbdb7 374 /**
vcoubard 1183:1589830dbdb7 375 * Same as GattCharacrteristic::setWriteAuthorizationCallback(), but allows
vcoubard 1183:1589830dbdb7 376 * the possibility to add an object reference and member function as
vcoubard 1183:1589830dbdb7 377 * handler for connection event callbacks.
vcoubard 1183:1589830dbdb7 378 *
vcoubard 1183:1589830dbdb7 379 * @param[in] object
vcoubard 1183:1589830dbdb7 380 * Pointer to the object of a class defining the member callback
vcoubard 1183:1589830dbdb7 381 * function (@p member).
vcoubard 1183:1589830dbdb7 382 * @param[in] member
vcoubard 1183:1589830dbdb7 383 * The member callback (within the context of an object) to be
vcoubard 1183:1589830dbdb7 384 * invoked.
vcoubard 1183:1589830dbdb7 385 */
vcoubard 1131:692ddf04fc42 386 template <typename T>
vcoubard 1131:692ddf04fc42 387 void setWriteAuthorizationCallback(T *object, void (T::*member)(GattWriteAuthCallbackParams *)) {
vcoubard 1131:692ddf04fc42 388 writeAuthorizationCallback.attach(object, member);
vcoubard 1131:692ddf04fc42 389 enabledWriteAuthorization = true;
vcoubard 1131:692ddf04fc42 390 }
vcoubard 1183:1589830dbdb7 391
vcoubard 1183:1589830dbdb7 392 /**
vcoubard 1183:1589830dbdb7 393 * Set up callback that will be triggered before the GATT Client is allowed
vcoubard 1183:1589830dbdb7 394 * to read this characteristic. The handler will determine the
vcoubard 1183:1589830dbdb7 395 * authorizaion reply for the read.
vcoubard 1183:1589830dbdb7 396 *
vcoubard 1183:1589830dbdb7 397 * @param[in] callback
vcoubard 1183:1589830dbdb7 398 * Event handler being registered.
vcoubard 1183:1589830dbdb7 399 */
vcoubard 1131:692ddf04fc42 400 void setReadAuthorizationCallback(void (*callback)(GattReadAuthCallbackParams *)) {
vcoubard 1131:692ddf04fc42 401 readAuthorizationCallback.attach(callback);
vcoubard 1131:692ddf04fc42 402 enabledReadAuthorization = true;
vcoubard 1131:692ddf04fc42 403 }
vcoubard 1183:1589830dbdb7 404
vcoubard 1183:1589830dbdb7 405 /**
vcoubard 1183:1589830dbdb7 406 * Same as GattCharacrteristic::setReadAuthorizationCallback(), but allows
vcoubard 1183:1589830dbdb7 407 * the possibility to add an object reference and member function as
vcoubard 1183:1589830dbdb7 408 * handler for connection event callbacks.
vcoubard 1183:1589830dbdb7 409 *
vcoubard 1183:1589830dbdb7 410 * @param[in] object
vcoubard 1183:1589830dbdb7 411 * Pointer to the object of a class defining the member callback
vcoubard 1183:1589830dbdb7 412 * function (@p member).
vcoubard 1183:1589830dbdb7 413 * @param[in] member
vcoubard 1183:1589830dbdb7 414 * The member callback (within the context of an object) to be
vcoubard 1183:1589830dbdb7 415 * invoked.
vcoubard 1183:1589830dbdb7 416 */
vcoubard 1131:692ddf04fc42 417 template <typename T>
vcoubard 1131:692ddf04fc42 418 void setReadAuthorizationCallback(T *object, void (T::*member)(GattReadAuthCallbackParams *)) {
vcoubard 1131:692ddf04fc42 419 readAuthorizationCallback.attach(object, member);
vcoubard 1131:692ddf04fc42 420 enabledReadAuthorization = true;
vcoubard 1131:692ddf04fc42 421 }
vcoubard 1131:692ddf04fc42 422
vcoubard 1131:692ddf04fc42 423 /**
vcoubard 1183:1589830dbdb7 424 * Helper that calls the registered handler to determine the authorization
vcoubard 1183:1589830dbdb7 425 * reply for a write request. This function is meant to be called from the
vcoubard 1183:1589830dbdb7 426 * BLE stack specific implementation.
vcoubard 1183:1589830dbdb7 427 *
vcoubard 1183:1589830dbdb7 428 * @param[in] params
vcoubard 1183:1589830dbdb7 429 * To capture the context of the write-auth request. Also
vcoubard 1183:1589830dbdb7 430 * contains an out-parameter for reply.
vcoubard 1183:1589830dbdb7 431 *
vcoubard 1183:1589830dbdb7 432 * @return A GattAuthCallbackReply_t value indicating whether authorization
vcoubard 1183:1589830dbdb7 433 * is granted.
vcoubard 1131:692ddf04fc42 434 */
vcoubard 1131:692ddf04fc42 435 GattAuthCallbackReply_t authorizeWrite(GattWriteAuthCallbackParams *params) {
vcoubard 1131:692ddf04fc42 436 if (!isWriteAuthorizationEnabled()) {
vcoubard 1131:692ddf04fc42 437 return AUTH_CALLBACK_REPLY_SUCCESS;
vcoubard 1131:692ddf04fc42 438 }
vcoubard 1131:692ddf04fc42 439
vcoubard 1131:692ddf04fc42 440 params->authorizationReply = AUTH_CALLBACK_REPLY_SUCCESS; /* Initialized to no-error by default. */
vcoubard 1131:692ddf04fc42 441 writeAuthorizationCallback.call(params);
vcoubard 1131:692ddf04fc42 442 return params->authorizationReply;
vcoubard 1131:692ddf04fc42 443 }
vcoubard 1131:692ddf04fc42 444
vcoubard 1131:692ddf04fc42 445 /**
vcoubard 1183:1589830dbdb7 446 * Helper that calls the registered handler to determine the authorization
vcoubard 1183:1589830dbdb7 447 * reply for a read request. This function is meant to be called from the
vcoubard 1183:1589830dbdb7 448 * BLE stack specific implementation.
vcoubard 1131:692ddf04fc42 449 *
vcoubard 1183:1589830dbdb7 450 * @param[in] params
vcoubard 1183:1589830dbdb7 451 * To capture the context of the read-auth request.
vcoubard 1183:1589830dbdb7 452 *
vcoubard 1183:1589830dbdb7 453 * @return A GattAuthCallbackReply_t value indicating whether authorization
vcoubard 1183:1589830dbdb7 454 * is granted.
vcoubard 1183:1589830dbdb7 455 *
vcoubard 1183:1589830dbdb7 456 * @note To authorize or deny the read the params->authorizationReply field
vcoubard 1131:692ddf04fc42 457 * should be set to true (authorize) or false (deny).
vcoubard 1131:692ddf04fc42 458 *
vcoubard 1183:1589830dbdb7 459 * @note If the read is approved and params->data is unchanged (NULL),
vcoubard 1131:692ddf04fc42 460 * the current characteristic value will be used.
vcoubard 1131:692ddf04fc42 461 *
vcoubard 1183:1589830dbdb7 462 * @note If the read is approved, a new value can be provided by setting
vcoubard 1131:692ddf04fc42 463 * the params->data pointer and params->len fields.
vcoubard 1131:692ddf04fc42 464 */
vcoubard 1131:692ddf04fc42 465 GattAuthCallbackReply_t authorizeRead(GattReadAuthCallbackParams *params) {
vcoubard 1131:692ddf04fc42 466 if (!isReadAuthorizationEnabled()) {
vcoubard 1131:692ddf04fc42 467 return AUTH_CALLBACK_REPLY_SUCCESS;
vcoubard 1131:692ddf04fc42 468 }
vcoubard 1131:692ddf04fc42 469
vcoubard 1131:692ddf04fc42 470 params->authorizationReply = AUTH_CALLBACK_REPLY_SUCCESS; /* Initialized to no-error by default. */
vcoubard 1131:692ddf04fc42 471 readAuthorizationCallback.call(params);
vcoubard 1131:692ddf04fc42 472 return params->authorizationReply;
vcoubard 1131:692ddf04fc42 473 }
vcoubard 1131:692ddf04fc42 474
vcoubard 1131:692ddf04fc42 475 public:
vcoubard 1183:1589830dbdb7 476 /**
vcoubard 1183:1589830dbdb7 477 * Get the characteristic's value attribute.
vcoubard 1183:1589830dbdb7 478 *
vcoubard 1183:1589830dbdb7 479 * @return A reference to the characteristic's value attribute.
vcoubard 1183:1589830dbdb7 480 */
vcoubard 1183:1589830dbdb7 481 GattAttribute& getValueAttribute() {
vcoubard 1183:1589830dbdb7 482 return _valueAttribute;
vcoubard 1183:1589830dbdb7 483 }
vcoubard 1183:1589830dbdb7 484
vcoubard 1183:1589830dbdb7 485 /**
vcoubard 1183:1589830dbdb7 486 * A const alternative to GattCharacteristic::getValueAttribute().
vcoubard 1183:1589830dbdb7 487 *
vcoubard 1183:1589830dbdb7 488 * @return A const reference to the characteristic's value attribute.
vcoubard 1183:1589830dbdb7 489 */
vcoubard 1183:1589830dbdb7 490 const GattAttribute& getValueAttribute() const {
vcoubard 1183:1589830dbdb7 491 return _valueAttribute;
vcoubard 1183:1589830dbdb7 492 }
vcoubard 1183:1589830dbdb7 493
vcoubard 1183:1589830dbdb7 494 /**
vcoubard 1183:1589830dbdb7 495 * Get the characteristic's value attribute handle in the ATT table.
vcoubard 1183:1589830dbdb7 496 *
vcoubard 1183:1589830dbdb7 497 * @return The value attribute handle.
vcoubard 1183:1589830dbdb7 498 *
vcoubard 1183:1589830dbdb7 499 * @note The attribute handle is typically assigned by the underlying BLE
vcoubard 1183:1589830dbdb7 500 * stack.
vcoubard 1183:1589830dbdb7 501 */
vcoubard 1183:1589830dbdb7 502 GattAttribute::Handle_t getValueHandle(void) const {
vcoubard 1183:1589830dbdb7 503 return getValueAttribute().getHandle();
vcoubard 1183:1589830dbdb7 504 }
vcoubard 1183:1589830dbdb7 505
vcoubard 1183:1589830dbdb7 506 /**
vcoubard 1183:1589830dbdb7 507 * Get the characteristic's propertied. Refer to
vcoubard 1183:1589830dbdb7 508 * GattCharacteristic::Properties_t.
vcoubard 1183:1589830dbdb7 509 *
vcoubard 1183:1589830dbdb7 510 * @return The characteristic's properties.
vcoubard 1183:1589830dbdb7 511 */
vcoubard 1183:1589830dbdb7 512 uint8_t getProperties(void) const {
vcoubard 1183:1589830dbdb7 513 return _properties;
vcoubard 1183:1589830dbdb7 514 }
vcoubard 1131:692ddf04fc42 515
vcoubard 1183:1589830dbdb7 516 /**
vcoubard 1183:1589830dbdb7 517 * Get the characteristic's required security.
vcoubard 1183:1589830dbdb7 518 *
vcoubard 1183:1589830dbdb7 519 * @return The characteristic's required security.
vcoubard 1183:1589830dbdb7 520 */
vcoubard 1183:1589830dbdb7 521 SecurityManager::SecurityMode_t getRequiredSecurity() const {
vcoubard 1183:1589830dbdb7 522 return _requiredSecurity;
vcoubard 1183:1589830dbdb7 523 }
vcoubard 1183:1589830dbdb7 524
vcoubard 1183:1589830dbdb7 525 /**
vcoubard 1183:1589830dbdb7 526 * Get the total number of descriptors within this characteristic.
vcoubard 1183:1589830dbdb7 527 *
vcoubard 1183:1589830dbdb7 528 * @return The total number of descriptors.
vcoubard 1183:1589830dbdb7 529 */
vcoubard 1183:1589830dbdb7 530 uint8_t getDescriptorCount(void) const {
vcoubard 1183:1589830dbdb7 531 return _descriptorCount;
vcoubard 1183:1589830dbdb7 532 }
vcoubard 1183:1589830dbdb7 533
vcoubard 1183:1589830dbdb7 534 /**
vcoubard 1183:1589830dbdb7 535 * Check whether read authorization is enabled i.e. check whether a
vcoubard 1183:1589830dbdb7 536 * read authorization callback was previously registered. Refer to
vcoubard 1183:1589830dbdb7 537 * GattCharacteristic::setReadAuthorizationCallback().
vcoubard 1183:1589830dbdb7 538 *
vcoubard 1183:1589830dbdb7 539 * @return true if read authorization is enabled, false otherwise.
vcoubard 1183:1589830dbdb7 540 */
vcoubard 1183:1589830dbdb7 541 bool isReadAuthorizationEnabled() const {
vcoubard 1183:1589830dbdb7 542 return enabledReadAuthorization;
vcoubard 1183:1589830dbdb7 543 }
vcoubard 1183:1589830dbdb7 544
vcoubard 1183:1589830dbdb7 545 /**
vcoubard 1183:1589830dbdb7 546 * Check whether write authorization is enabled i.e. check whether a
vcoubard 1183:1589830dbdb7 547 * write authorization callback was previously registered. Refer to
vcoubard 1183:1589830dbdb7 548 * GattCharacteristic::setReadAuthorizationCallback().
vcoubard 1183:1589830dbdb7 549 *
vcoubard 1183:1589830dbdb7 550 * @return true if write authorization is enabled, false otherwise.
vcoubard 1183:1589830dbdb7 551 */
vcoubard 1183:1589830dbdb7 552 bool isWriteAuthorizationEnabled() const {
vcoubard 1183:1589830dbdb7 553 return enabledWriteAuthorization;
vcoubard 1183:1589830dbdb7 554 }
vcoubard 1183:1589830dbdb7 555
vcoubard 1183:1589830dbdb7 556 /**
vcoubard 1183:1589830dbdb7 557 * Get this characteristic's descriptor at a specific index.
vcoubard 1183:1589830dbdb7 558 *
vcoubard 1183:1589830dbdb7 559 * @param[in] index
vcoubard 1183:1589830dbdb7 560 * The descriptor's index.
vcoubard 1183:1589830dbdb7 561 *
vcoubard 1183:1589830dbdb7 562 * @return A pointer the requested descriptor if @p index contains a valid
vcoubard 1183:1589830dbdb7 563 * descriptor, or NULL otherwise.
vcoubard 1183:1589830dbdb7 564 */
vcoubard 1131:692ddf04fc42 565 GattAttribute *getDescriptor(uint8_t index) {
vcoubard 1131:692ddf04fc42 566 if (index >= _descriptorCount) {
vcoubard 1131:692ddf04fc42 567 return NULL;
vcoubard 1131:692ddf04fc42 568 }
vcoubard 1131:692ddf04fc42 569
vcoubard 1131:692ddf04fc42 570 return _descriptors[index];
vcoubard 1131:692ddf04fc42 571 }
vcoubard 1131:692ddf04fc42 572
vcoubard 1131:692ddf04fc42 573 private:
vcoubard 1183:1589830dbdb7 574 /**
vcoubard 1183:1589830dbdb7 575 * Attribute that contains the actual value of this characteristic.
vcoubard 1183:1589830dbdb7 576 */
vcoubard 1131:692ddf04fc42 577 GattAttribute _valueAttribute;
vcoubard 1183:1589830dbdb7 578 /**
vcoubard 1183:1589830dbdb7 579 * The characteristic's properties. Refer to
vcoubard 1183:1589830dbdb7 580 * GattCharacteristic::Properties_t.
vcoubard 1183:1589830dbdb7 581 */
vcoubard 1131:692ddf04fc42 582 uint8_t _properties;
vcoubard 1183:1589830dbdb7 583 /**
vcoubard 1183:1589830dbdb7 584 * The characteristic's required security.
vcoubard 1183:1589830dbdb7 585 */
vcoubard 1131:692ddf04fc42 586 SecurityManager::SecurityMode_t _requiredSecurity;
vcoubard 1183:1589830dbdb7 587 /**
vcoubard 1183:1589830dbdb7 588 * The characteristic's descriptor attributes.
vcoubard 1183:1589830dbdb7 589 */
vcoubard 1131:692ddf04fc42 590 GattAttribute **_descriptors;
vcoubard 1183:1589830dbdb7 591 /**
vcoubard 1183:1589830dbdb7 592 * The number of descriptors in this characteristic.
vcoubard 1183:1589830dbdb7 593 */
vcoubard 1131:692ddf04fc42 594 uint8_t _descriptorCount;
vcoubard 1131:692ddf04fc42 595
vcoubard 1183:1589830dbdb7 596 /**
vcoubard 1183:1589830dbdb7 597 * Whether read authorization is enabled i.e. whether there is a registered
vcoubard 1183:1589830dbdb7 598 * callback to determine read authorization reply.
vcoubard 1183:1589830dbdb7 599 */
vcoubard 1131:692ddf04fc42 600 bool enabledReadAuthorization;
vcoubard 1183:1589830dbdb7 601 /**
vcoubard 1183:1589830dbdb7 602 * Whether write authorization is enabled i.e. whether there is a registered
vcoubard 1183:1589830dbdb7 603 * callback to determine write authorization reply.
vcoubard 1183:1589830dbdb7 604 */
vcoubard 1131:692ddf04fc42 605 bool enabledWriteAuthorization;
vcoubard 1183:1589830dbdb7 606 /**
vcoubard 1183:1589830dbdb7 607 * The registered callback handler for read authorization reply.
vcoubard 1183:1589830dbdb7 608 */
vcoubard 1131:692ddf04fc42 609 FunctionPointerWithContext<GattReadAuthCallbackParams *> readAuthorizationCallback;
vcoubard 1183:1589830dbdb7 610 /**
vcoubard 1183:1589830dbdb7 611 * The registered callback handler for write authorization reply.
vcoubard 1183:1589830dbdb7 612 */
vcoubard 1131:692ddf04fc42 613 FunctionPointerWithContext<GattWriteAuthCallbackParams *> writeAuthorizationCallback;
vcoubard 1131:692ddf04fc42 614
vcoubard 1131:692ddf04fc42 615 private:
vcoubard 1131:692ddf04fc42 616 /* Disallow copy and assignment. */
vcoubard 1131:692ddf04fc42 617 GattCharacteristic(const GattCharacteristic &);
vcoubard 1131:692ddf04fc42 618 GattCharacteristic& operator=(const GattCharacteristic &);
vcoubard 1131:692ddf04fc42 619 };
vcoubard 1131:692ddf04fc42 620
vcoubard 1183:1589830dbdb7 621 /**
vcoubard 1183:1589830dbdb7 622 * Helper class to construct a read-only GattCharacteristic.
vcoubard 1183:1589830dbdb7 623 */
vcoubard 1131:692ddf04fc42 624 template <typename T>
vcoubard 1131:692ddf04fc42 625 class ReadOnlyGattCharacteristic : public GattCharacteristic {
vcoubard 1131:692ddf04fc42 626 public:
vcoubard 1183:1589830dbdb7 627 /**
vcoubard 1183:1589830dbdb7 628 * Construct a ReadOnlyGattCharacteristic.
vcoubard 1183:1589830dbdb7 629 *
vcoubard 1183:1589830dbdb7 630 * @param[in] uuid
vcoubard 1183:1589830dbdb7 631 * The characteristic's UUID.
vcoubard 1183:1589830dbdb7 632 * @param[in] valuePtr
vcoubard 1183:1589830dbdb7 633 * Pointer to the characterisitic's initial value.
vcoubard 1183:1589830dbdb7 634 * @param[in] additionalProperties
vcoubard 1183:1589830dbdb7 635 * Additional characterisitic properties. By default, the
vcoubard 1183:1589830dbdb7 636 * properties are set to
vcoubard 1183:1589830dbdb7 637 * Properties_t::BLE_GATT_CHAR_PROPERTIES_READ.
vcoubard 1183:1589830dbdb7 638 * @param[in] descriptors
vcoubard 1183:1589830dbdb7 639 * An array of pointers to descriptors to be added to the new
vcoubard 1183:1589830dbdb7 640 * characteristic.
vcoubard 1183:1589830dbdb7 641 * @param[in] numDescriptors
vcoubard 1183:1589830dbdb7 642 * The total number of descriptors in @p descriptors.
vcoubard 1183:1589830dbdb7 643 *
vcoubard 1183:1589830dbdb7 644 * @note Instances of ReadOnlyGattCharacteristic have a fixed length
vcoubard 1183:1589830dbdb7 645 * attribute value that equals sizeof(T). For a variable length
vcoubard 1183:1589830dbdb7 646 * alternative use GattCharacteristic directly.
vcoubard 1183:1589830dbdb7 647 */
vcoubard 1131:692ddf04fc42 648 ReadOnlyGattCharacteristic<T>(const UUID &uuid,
vcoubard 1131:692ddf04fc42 649 T *valuePtr,
vcoubard 1131:692ddf04fc42 650 uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
vcoubard 1131:692ddf04fc42 651 GattAttribute *descriptors[] = NULL,
vcoubard 1131:692ddf04fc42 652 unsigned numDescriptors = 0) :
vcoubard 1131:692ddf04fc42 653 GattCharacteristic(uuid, reinterpret_cast<uint8_t *>(valuePtr), sizeof(T), sizeof(T),
vcoubard 1132:6362b7c2fdff 654 BLE_GATT_CHAR_PROPERTIES_READ | additionalProperties, descriptors, numDescriptors, false) {
vcoubard 1131:692ddf04fc42 655 /* empty */
vcoubard 1131:692ddf04fc42 656 }
vcoubard 1131:692ddf04fc42 657 };
vcoubard 1131:692ddf04fc42 658
vcoubard 1183:1589830dbdb7 659 /**
vcoubard 1183:1589830dbdb7 660 * Helper class to construct a write-only GattCharacteristic.
vcoubard 1183:1589830dbdb7 661 */
vcoubard 1131:692ddf04fc42 662 template <typename T>
vcoubard 1131:692ddf04fc42 663 class WriteOnlyGattCharacteristic : public GattCharacteristic {
vcoubard 1131:692ddf04fc42 664 public:
vcoubard 1183:1589830dbdb7 665 /**
vcoubard 1183:1589830dbdb7 666 * Construct a WriteOnlyGattCharacteristic.
vcoubard 1183:1589830dbdb7 667 *
vcoubard 1183:1589830dbdb7 668 * @param[in] uuid
vcoubard 1183:1589830dbdb7 669 * The characteristic's UUID.
vcoubard 1183:1589830dbdb7 670 * @param[in] valuePtr
vcoubard 1183:1589830dbdb7 671 * Pointer to the characterisitic's initial value.
vcoubard 1183:1589830dbdb7 672 * @param[in] additionalProperties
vcoubard 1183:1589830dbdb7 673 * Additional characterisitic properties. By default, the
vcoubard 1183:1589830dbdb7 674 * properties are set to
vcoubard 1183:1589830dbdb7 675 * Properties_t::BLE_GATT_CHAR_PROPERTIES_WRITE.
vcoubard 1183:1589830dbdb7 676 * @param[in] descriptors
vcoubard 1183:1589830dbdb7 677 * An array of pointers to descriptors to be added to the new
vcoubard 1183:1589830dbdb7 678 * characteristic.
vcoubard 1183:1589830dbdb7 679 * @param[in] numDescriptors
vcoubard 1183:1589830dbdb7 680 * The total number of descriptors in @p descriptors.
vcoubard 1183:1589830dbdb7 681 *
vcoubard 1183:1589830dbdb7 682 * @note Instances of WriteOnlyGattCharacteristic have variable length
vcoubard 1183:1589830dbdb7 683 * attribute value with maximum size equal to sizeof(T). For a fixed length
vcoubard 1183:1589830dbdb7 684 * alternative use GattCharacteristic directly.
vcoubard 1183:1589830dbdb7 685 */
vcoubard 1131:692ddf04fc42 686 WriteOnlyGattCharacteristic<T>(const UUID &uuid,
vcoubard 1131:692ddf04fc42 687 T *valuePtr,
vcoubard 1131:692ddf04fc42 688 uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
vcoubard 1131:692ddf04fc42 689 GattAttribute *descriptors[] = NULL,
vcoubard 1131:692ddf04fc42 690 unsigned numDescriptors = 0) :
vcoubard 1131:692ddf04fc42 691 GattCharacteristic(uuid, reinterpret_cast<uint8_t *>(valuePtr), sizeof(T), sizeof(T),
vcoubard 1131:692ddf04fc42 692 BLE_GATT_CHAR_PROPERTIES_WRITE | additionalProperties, descriptors, numDescriptors) {
vcoubard 1131:692ddf04fc42 693 /* empty */
vcoubard 1131:692ddf04fc42 694 }
vcoubard 1131:692ddf04fc42 695 };
vcoubard 1131:692ddf04fc42 696
vcoubard 1183:1589830dbdb7 697 /**
vcoubard 1183:1589830dbdb7 698 * Helper class to construct a readable and writable GattCharacteristic.
vcoubard 1183:1589830dbdb7 699 */
vcoubard 1131:692ddf04fc42 700 template <typename T>
vcoubard 1131:692ddf04fc42 701 class ReadWriteGattCharacteristic : public GattCharacteristic {
vcoubard 1131:692ddf04fc42 702 public:
vcoubard 1183:1589830dbdb7 703 /**
vcoubard 1183:1589830dbdb7 704 * Construct a ReadWriteGattCharacteristic.
vcoubard 1183:1589830dbdb7 705 *
vcoubard 1183:1589830dbdb7 706 * @param[in] uuid
vcoubard 1183:1589830dbdb7 707 * The characteristic's UUID.
vcoubard 1183:1589830dbdb7 708 * @param[in] valuePtr
vcoubard 1183:1589830dbdb7 709 * Pointer to the characterisitic's initial value.
vcoubard 1183:1589830dbdb7 710 * @param[in] additionalProperties
vcoubard 1183:1589830dbdb7 711 * Additional characterisitic properties. By default, the
vcoubard 1183:1589830dbdb7 712 * properties are set to
vcoubard 1183:1589830dbdb7 713 * Properties_t::BLE_GATT_CHAR_PROPERTIES_WRITE |
vcoubard 1183:1589830dbdb7 714 * Properties_t::BLE_GATT_CHAR_PROPERTIES_READ.
vcoubard 1183:1589830dbdb7 715 * @param[in] descriptors
vcoubard 1183:1589830dbdb7 716 * An array of pointers to descriptors to be added to the new
vcoubard 1183:1589830dbdb7 717 * characteristic.
vcoubard 1183:1589830dbdb7 718 * @param[in] numDescriptors
vcoubard 1183:1589830dbdb7 719 * The total number of descriptors in @p descriptors.
vcoubard 1183:1589830dbdb7 720 *
vcoubard 1183:1589830dbdb7 721 * @note Instances of ReadWriteGattCharacteristic have variable length
vcoubard 1183:1589830dbdb7 722 * attribute value with maximum size equal to sizeof(T). For a fixed length
vcoubard 1183:1589830dbdb7 723 * alternative use GattCharacteristic directly.
vcoubard 1183:1589830dbdb7 724 */
vcoubard 1131:692ddf04fc42 725 ReadWriteGattCharacteristic<T>(const UUID &uuid,
vcoubard 1131:692ddf04fc42 726 T *valuePtr,
vcoubard 1131:692ddf04fc42 727 uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
vcoubard 1131:692ddf04fc42 728 GattAttribute *descriptors[] = NULL,
vcoubard 1131:692ddf04fc42 729 unsigned numDescriptors = 0) :
vcoubard 1131:692ddf04fc42 730 GattCharacteristic(uuid, reinterpret_cast<uint8_t *>(valuePtr), sizeof(T), sizeof(T),
vcoubard 1131:692ddf04fc42 731 BLE_GATT_CHAR_PROPERTIES_READ | BLE_GATT_CHAR_PROPERTIES_WRITE | additionalProperties, descriptors, numDescriptors) {
vcoubard 1131:692ddf04fc42 732 /* empty */
vcoubard 1131:692ddf04fc42 733 }
vcoubard 1131:692ddf04fc42 734 };
vcoubard 1131:692ddf04fc42 735
vcoubard 1183:1589830dbdb7 736 /**
vcoubard 1183:1589830dbdb7 737 * Helper class to construct a write-only GattCharacteristic with an array
vcoubard 1183:1589830dbdb7 738 * value.
vcoubard 1183:1589830dbdb7 739 */
vcoubard 1131:692ddf04fc42 740 template <typename T, unsigned NUM_ELEMENTS>
vcoubard 1131:692ddf04fc42 741 class WriteOnlyArrayGattCharacteristic : public GattCharacteristic {
vcoubard 1131:692ddf04fc42 742 public:
vcoubard 1183:1589830dbdb7 743 /**
vcoubard 1183:1589830dbdb7 744 * Construct a WriteOnlyGattCharacteristic.
vcoubard 1183:1589830dbdb7 745 *
vcoubard 1183:1589830dbdb7 746 * @param[in] uuid
vcoubard 1183:1589830dbdb7 747 * The characteristic's UUID.
vcoubard 1183:1589830dbdb7 748 * @param[in] valuePtr
vcoubard 1183:1589830dbdb7 749 * Pointer to an array of length NUM_ELEMENTS containing the
vcoubard 1183:1589830dbdb7 750 * characteristic's intitial value.
vcoubard 1183:1589830dbdb7 751 * @param[in] additionalProperties
vcoubard 1183:1589830dbdb7 752 * Additional characterisitic properties. By default, the
vcoubard 1183:1589830dbdb7 753 * properties are set to
vcoubard 1183:1589830dbdb7 754 * Properties_t::BLE_GATT_CHAR_PROPERTIES_WRITE.
vcoubard 1183:1589830dbdb7 755 * @param[in] descriptors
vcoubard 1183:1589830dbdb7 756 * An array of pointers to descriptors to be added to the new
vcoubard 1183:1589830dbdb7 757 * characteristic.
vcoubard 1183:1589830dbdb7 758 * @param[in] numDescriptors
vcoubard 1183:1589830dbdb7 759 * The total number of descriptors in @p descriptors.
vcoubard 1183:1589830dbdb7 760 *
vcoubard 1183:1589830dbdb7 761 * @note Instances of WriteOnlyGattCharacteristic have variable length
vcoubard 1183:1589830dbdb7 762 * attribute value with maximum size equal to sizeof(T) * NUM_ELEMENTS.
vcoubard 1183:1589830dbdb7 763 * For a fixed length alternative use GattCharacteristic directly.
vcoubard 1183:1589830dbdb7 764 */
vcoubard 1131:692ddf04fc42 765 WriteOnlyArrayGattCharacteristic<T, NUM_ELEMENTS>(const UUID &uuid,
vcoubard 1131:692ddf04fc42 766 T valuePtr[NUM_ELEMENTS],
vcoubard 1131:692ddf04fc42 767 uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
vcoubard 1131:692ddf04fc42 768 GattAttribute *descriptors[] = NULL,
vcoubard 1131:692ddf04fc42 769 unsigned numDescriptors = 0) :
vcoubard 1131:692ddf04fc42 770 GattCharacteristic(uuid, reinterpret_cast<uint8_t *>(valuePtr), sizeof(T) * NUM_ELEMENTS, sizeof(T) * NUM_ELEMENTS,
vcoubard 1131:692ddf04fc42 771 BLE_GATT_CHAR_PROPERTIES_WRITE | additionalProperties, descriptors, numDescriptors) {
vcoubard 1131:692ddf04fc42 772 /* empty */
vcoubard 1131:692ddf04fc42 773 }
vcoubard 1131:692ddf04fc42 774 };
vcoubard 1131:692ddf04fc42 775
vcoubard 1183:1589830dbdb7 776 /**
vcoubard 1183:1589830dbdb7 777 * Helper class to construct a read-only GattCharacteristic with an array
vcoubard 1183:1589830dbdb7 778 * value.
vcoubard 1183:1589830dbdb7 779 */
vcoubard 1131:692ddf04fc42 780 template <typename T, unsigned NUM_ELEMENTS>
vcoubard 1131:692ddf04fc42 781 class ReadOnlyArrayGattCharacteristic : public GattCharacteristic {
vcoubard 1131:692ddf04fc42 782 public:
vcoubard 1183:1589830dbdb7 783 /**
vcoubard 1183:1589830dbdb7 784 * Construct a ReadOnlyGattCharacteristic.
vcoubard 1183:1589830dbdb7 785 *
vcoubard 1183:1589830dbdb7 786 * @param[in] uuid
vcoubard 1183:1589830dbdb7 787 * The characteristic's UUID.
vcoubard 1183:1589830dbdb7 788 * @param[in] valuePtr
vcoubard 1183:1589830dbdb7 789 * Pointer to an array of length NUM_ELEMENTS containing the
vcoubard 1183:1589830dbdb7 790 * characteristic's intitial value.
vcoubard 1183:1589830dbdb7 791 * @param[in] additionalProperties
vcoubard 1183:1589830dbdb7 792 * Additional characterisitic properties. By default, the
vcoubard 1183:1589830dbdb7 793 * properties are set to
vcoubard 1183:1589830dbdb7 794 * Properties_t::BLE_GATT_CHAR_PROPERTIES_READ.
vcoubard 1183:1589830dbdb7 795 * @param[in] descriptors
vcoubard 1183:1589830dbdb7 796 * An array of pointers to descriptors to be added to the new
vcoubard 1183:1589830dbdb7 797 * characteristic.
vcoubard 1183:1589830dbdb7 798 * @param[in] numDescriptors
vcoubard 1183:1589830dbdb7 799 * The total number of descriptors in @p descriptors.
vcoubard 1183:1589830dbdb7 800 *
vcoubard 1183:1589830dbdb7 801 * @note Instances of ReadOnlyGattCharacteristic have fixed length
vcoubard 1183:1589830dbdb7 802 * attribute value that equals sizeof(T) * NUM_ELEMENTS.
vcoubard 1183:1589830dbdb7 803 * For a variable length alternative use GattCharacteristic directly.
vcoubard 1183:1589830dbdb7 804 */
vcoubard 1131:692ddf04fc42 805 ReadOnlyArrayGattCharacteristic<T, NUM_ELEMENTS>(const UUID &uuid,
vcoubard 1131:692ddf04fc42 806 T valuePtr[NUM_ELEMENTS],
vcoubard 1131:692ddf04fc42 807 uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
vcoubard 1131:692ddf04fc42 808 GattAttribute *descriptors[] = NULL,
vcoubard 1131:692ddf04fc42 809 unsigned numDescriptors = 0) :
vcoubard 1131:692ddf04fc42 810 GattCharacteristic(uuid, reinterpret_cast<uint8_t *>(valuePtr), sizeof(T) * NUM_ELEMENTS, sizeof(T) * NUM_ELEMENTS,
vcoubard 1132:6362b7c2fdff 811 BLE_GATT_CHAR_PROPERTIES_READ | additionalProperties, descriptors, numDescriptors, false) {
vcoubard 1131:692ddf04fc42 812 /* empty */
vcoubard 1131:692ddf04fc42 813 }
vcoubard 1131:692ddf04fc42 814 };
vcoubard 1131:692ddf04fc42 815
vcoubard 1183:1589830dbdb7 816 /**
vcoubard 1183:1589830dbdb7 817 * Helper class to construct a readable and writable GattCharacteristic with an array
vcoubard 1183:1589830dbdb7 818 * value.
vcoubard 1183:1589830dbdb7 819 */
vcoubard 1131:692ddf04fc42 820 template <typename T, unsigned NUM_ELEMENTS>
vcoubard 1131:692ddf04fc42 821 class ReadWriteArrayGattCharacteristic : public GattCharacteristic {
vcoubard 1131:692ddf04fc42 822 public:
vcoubard 1183:1589830dbdb7 823 /**
vcoubard 1183:1589830dbdb7 824 * Construct a ReadWriteGattCharacteristic.
vcoubard 1183:1589830dbdb7 825 *
vcoubard 1183:1589830dbdb7 826 * @param[in] uuid
vcoubard 1183:1589830dbdb7 827 * The characteristic's UUID.
vcoubard 1183:1589830dbdb7 828 * @param[in] valuePtr
vcoubard 1183:1589830dbdb7 829 * Pointer to an array of length NUM_ELEMENTS containing the
vcoubard 1183:1589830dbdb7 830 * characteristic's intitial value.
vcoubard 1183:1589830dbdb7 831 * @param[in] additionalProperties
vcoubard 1183:1589830dbdb7 832 * Additional characterisitic properties. By default, the
vcoubard 1183:1589830dbdb7 833 * properties are set to
vcoubard 1183:1589830dbdb7 834 * Properties_t::BLE_GATT_CHAR_PROPERTIES_WRITE |
vcoubard 1183:1589830dbdb7 835 * Properties_t::BLE_GATT_CHAR_PROPERTIES_READ.
vcoubard 1183:1589830dbdb7 836 * @param[in] descriptors
vcoubard 1183:1589830dbdb7 837 * An array of pointers to descriptors to be added to the new
vcoubard 1183:1589830dbdb7 838 * characteristic.
vcoubard 1183:1589830dbdb7 839 * @param[in] numDescriptors
vcoubard 1183:1589830dbdb7 840 * The total number of descriptors in @p descriptors.
vcoubard 1183:1589830dbdb7 841 *
vcoubard 1183:1589830dbdb7 842 * @note Instances of ReadWriteGattCharacteristic have variable length
vcoubard 1183:1589830dbdb7 843 * attribute value with maximum size equal to sizeof(T) * NUM_ELEMENTS.
vcoubard 1183:1589830dbdb7 844 * For a fixed length alternative use GattCharacteristic directly.
vcoubard 1183:1589830dbdb7 845 */
vcoubard 1131:692ddf04fc42 846 ReadWriteArrayGattCharacteristic<T, NUM_ELEMENTS>(const UUID &uuid,
vcoubard 1131:692ddf04fc42 847 T valuePtr[NUM_ELEMENTS],
vcoubard 1131:692ddf04fc42 848 uint8_t additionalProperties = BLE_GATT_CHAR_PROPERTIES_NONE,
vcoubard 1131:692ddf04fc42 849 GattAttribute *descriptors[] = NULL,
vcoubard 1131:692ddf04fc42 850 unsigned numDescriptors = 0) :
vcoubard 1131:692ddf04fc42 851 GattCharacteristic(uuid, reinterpret_cast<uint8_t *>(valuePtr), sizeof(T) * NUM_ELEMENTS, sizeof(T) * NUM_ELEMENTS,
vcoubard 1131:692ddf04fc42 852 BLE_GATT_CHAR_PROPERTIES_READ | BLE_GATT_CHAR_PROPERTIES_WRITE | additionalProperties, descriptors, numDescriptors) {
vcoubard 1131:692ddf04fc42 853 /* empty */
vcoubard 1131:692ddf04fc42 854 }
vcoubard 1131:692ddf04fc42 855 };
vcoubard 1131:692ddf04fc42 856
vcoubard 1183:1589830dbdb7 857 #endif /* ifndef __GATT_CHARACTERISTIC_H__ */