Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dis.c « Src « svc « ble « STM32_WPAN « ST « Middlewares - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b44afd62bcdd9c8af0b8a2acc4072d2e1da0daea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
/**
  ******************************************************************************
  * @file    dis.c
  * @author  MCD Application Team
  * @brief   Device Information Service
  ******************************************************************************
  * @attention
 *
 * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
 * All rights reserved.</center></h2>
 *
 * This software component is licensed by ST under Ultimate Liberty license
 * SLA0044, the "License"; You may not use this file except in compliance with
 * the License. You may obtain a copy of the License at:
 *                             www.st.com/SLA0044
 *
 ******************************************************************************
 */


/* Includes ------------------------------------------------------------------*/
#include "common_blesvc.h"


/* Private typedef -----------------------------------------------------------*/
typedef struct
{
  uint16_t  DeviceInformationSvcHdle;       /**< Service handle */
#if (BLE_CFG_DIS_MANUFACTURER_NAME_STRING != 0)
  uint16_t  ManufacturerNameStringCharHdle; /**< Characteristic handle */
#endif
#if (BLE_CFG_DIS_MODEL_NUMBER_STRING != 0)
  uint16_t  ModelNumberStringCharHdle;      /**< Characteristic handle */
#endif
#if (BLE_CFG_DIS_SERIAL_NUMBER_STRING != 0)
  uint16_t  SerialNumberStringCharHdle;     /**< Characteristic handle */
#endif
#if (BLE_CFG_DIS_HARDWARE_REVISION_STRING != 0)
  uint16_t  HardwareRevisionStringCharHdle; /**< Characteristic handle */
#endif
#if (BLE_CFG_DIS_FIRMWARE_REVISION_STRING != 0)
  uint16_t  FirmwareRevisionStringCharHdle; /**< Characteristic handle */
#endif
#if (BLE_CFG_DIS_SOFTWARE_REVISION_STRING != 0)
  uint16_t  SoftwareRevisionStringCharHdle; /**< Characteristic handle */
#endif
#if (BLE_CFG_DIS_SYSTEM_ID != 0)
  uint16_t  SystemIDCharHdle;               /**< Characteristic handle */
#endif
#if (BLE_CFG_DIS_IEEE_CERTIFICATION != 0)
  uint16_t  IEEECertificationCharHdle;      /**< Characteristic handle */
#endif
#if (BLE_CFG_DIS_PNP_ID != 0)
  uint16_t  PNPIDCharHdle;                  /**< Characteristic handle */
#endif
}DIS_Context_t;


/* Private defines -----------------------------------------------------------*/
/* Private macros ------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/

/**
 * START of Section BLE_DRIVER_CONTEXT
 */

PLACE_IN_SECTION("BLE_DRIVER_CONTEXT") static DIS_Context_t DIS_Context;

/**
 * END of Section BLE_DRIVER_CONTEXT
 */


/* Functions Definition ------------------------------------------------------*/
/* Private functions ----------------------------------------------------------*/
/* Public functions ----------------------------------------------------------*/
/**
 * @brief  Service initialization
 * @param  None
 * @retval None
 */
void DIS_Init(void)
{
  uint16_t uuid;
  tBleStatus hciCmdResult;

  memset ( &DIS_Context, 0, sizeof(DIS_Context_t) );

  /**
   *  Register the event handler to the BLE controller
   *
   *  There is no need of an interrupt handler for this service
   */

  /**
   *  Add Device Information Service
   */
  uuid = DEVICE_INFORMATION_SERVICE_UUID;
  hciCmdResult = aci_gatt_add_service(UUID_TYPE_16,
                                      (Service_UUID_t *) &uuid,
                                      PRIMARY_SERVICE,
#if (BLE_CFG_DIS_MANUFACTURER_NAME_STRING != 0)
                                      2+
#endif
#if (BLE_CFG_DIS_MODEL_NUMBER_STRING != 0)
                                      2+
#endif
#if (BLE_CFG_DIS_SERIAL_NUMBER_STRING != 0)
                                      2+
#endif
#if (BLE_CFG_DIS_HARDWARE_REVISION_STRING != 0)
                                      2+
#endif
#if (BLE_CFG_DIS_FIRMWARE_REVISION_STRING != 0)
                                      2+
#endif
#if (BLE_CFG_DIS_SOFTWARE_REVISION_STRING != 0)
                                      2+
#endif
#if (BLE_CFG_DIS_SYSTEM_ID != 0)
                                      2+
#endif
#if (BLE_CFG_DIS_IEEE_CERTIFICATION != 0)
                                      2+
#endif
#if (BLE_CFG_DIS_PNP_ID != 0)
                                      2+
#endif
                                      1,
                                      &(DIS_Context.DeviceInformationSvcHdle));

  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("Device Information Service (DIS) is added Successfully %04X\n", 
                 DIS_Context.DeviceInformationSvcHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add Device Information Service (DIS), Error: %02X !!\n", 
                 hciCmdResult);
  }

#if (BLE_CFG_DIS_MANUFACTURER_NAME_STRING != 0)
  /**
   *  Add Manufacturer Name String Characteristic
   */
  uuid = MANUFACTURER_NAME_UUID;
  hciCmdResult = aci_gatt_add_char(DIS_Context.DeviceInformationSvcHdle,
                                   UUID_TYPE_16,
                                   (Char_UUID_t *) &uuid ,
                                   BLE_CFG_DIS_MANUFACTURER_NAME_STRING_LEN_MAX,
                                   CHAR_PROP_READ,
                                   ATTR_PERMISSION_NONE,
                                   GATT_DONT_NOTIFY_EVENTS, /* gattEvtMask */
                                   10, /* encryKeySize */
                                   CHAR_VALUE_LEN_VARIABLE, /* isVariable */
                                   &(DIS_Context.ManufacturerNameStringCharHdle));

  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("Manufacturer Name Characteristic Added Successfully  %04X \n", 
                 DIS_Context.ManufacturerNameStringCharHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add Manufacturer Name Characteristic, Error: %02X !!\n", 
                hciCmdResult);
  }

#endif

#if (BLE_CFG_DIS_MODEL_NUMBER_STRING != 0)
  /**
   *  Add Model Number String Characteristic
   */
  uuid = MODEL_NUMBER_UUID;
  hciCmdResult = aci_gatt_add_char(DIS_Context.DeviceInformationSvcHdle,
                                   UUID_TYPE_16,
                                   (Char_UUID_t *) &uuid ,
                                   BLE_CFG_DIS_MODEL_NUMBER_STRING_LEN_MAX,
                                   CHAR_PROP_READ,
                                   ATTR_PERMISSION_NONE,
                                   GATT_DONT_NOTIFY_EVENTS, /* gattEvtMask */
                                   10, /* encryKeySize */
                                   CHAR_VALUE_LEN_VARIABLE, /* isVariable */
                                   &(DIS_Context.ModelNumberStringCharHdle));
  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("Model Number String Characteristic Added Successfully  %04X \n", 
                 DIS_Context.ModelNumberStringCharHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add Model Number String Characteristic, Error: %02X !!\n", 
                hciCmdResult);
  }

#endif

#if (BLE_CFG_DIS_SERIAL_NUMBER_STRING != 0)
  /**
   *  Add Serial Number String Characteristic
   */
  uuid = SERIAL_NUMBER_UUID;
  hciCmdResult = aci_gatt_add_char(DIS_Context.DeviceInformationSvcHdle,
                                   UUID_TYPE_16,
                                   (Char_UUID_t *) &uuid ,
                                   BLE_CFG_DIS_SERIAL_NUMBER_STRING_LEN_MAX,
                                   CHAR_PROP_READ,
                                   ATTR_PERMISSION_NONE,
                                   GATT_DONT_NOTIFY_EVENTS, /* gattEvtMask */
                                   10, /* encryKeySize */
                                   CHAR_VALUE_LEN_VARIABLE, /* isVariable */
                                   &(DIS_Context.SerialNumberStringCharHdle));
  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("Serial Number String Characteristic Added Successfully  %04X \n", 
                 DIS_Context.SerialNumberStringCharHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add Serial Number String Characteristic, Error: %02X !!\n", 
                hciCmdResult);
  }

#endif

#if (BLE_CFG_DIS_HARDWARE_REVISION_STRING != 0)
  /**
   *  Add Hardware Revision String Characteristic
   */
  uuid = HARDWARE_REVISION_UUID;
  hciCmdResult = aci_gatt_add_char(DIS_Context.DeviceInformationSvcHdle,
                                   UUID_TYPE_16,
                                   (Char_UUID_t *) &uuid ,
                                   BLE_CFG_DIS_HARDWARE_REVISION_STRING_LEN_MAX,
                                   CHAR_PROP_READ,
                                   ATTR_PERMISSION_NONE,
                                   GATT_DONT_NOTIFY_EVENTS, /* gattEvtMask */
                                   10, /* encryKeySize */
                                   CHAR_VALUE_LEN_VARIABLE, /* isVariable */
                                   &(DIS_Context.HardwareRevisionStringCharHdle));
  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("Hardware Revision String Characteristic Added Successfully  %04X \n", 
                 DIS_Context.HardwareRevisionStringCharHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add Hardware Revision String Characteristic, Error: %02X !!\n", 
                hciCmdResult);
  }

#endif

#if (BLE_CFG_DIS_FIRMWARE_REVISION_STRING != 0)
  /**
   *  Add Firmware Revision String Characteristic
   */
  uuid = FIRMWARE_REVISION_UUID;
  hciCmdResult = aci_gatt_add_char(DIS_Context.DeviceInformationSvcHdle,
                                   UUID_TYPE_16,
                                   (Char_UUID_t *) &uuid ,
                                   BLE_CFG_DIS_FIRMWARE_REVISION_STRING_LEN_MAX,
                                   CHAR_PROP_READ,
                                   ATTR_PERMISSION_NONE,
                                   GATT_DONT_NOTIFY_EVENTS, /* gattEvtMask */
                                   10, /* encryKeySize */
                                   CHAR_VALUE_LEN_VARIABLE, /* isVariable */
                                   &(DIS_Context.FirmwareRevisionStringCharHdle));
  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("Firmware Revision String Characteristic Added Successfully  %04X \n", 
                 DIS_Context.FirmwareRevisionStringCharHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add Firmware Revision String Characteristic, Error: %02X !!\n", 
                hciCmdResult);
  }
#endif

#if (BLE_CFG_DIS_SOFTWARE_REVISION_STRING != 0)
  /**
   *  Add Software Revision String Characteristic
   */
  uuid = SOFTWARE_REVISION_UUID;
  hciCmdResult = aci_gatt_add_char(DIS_Context.DeviceInformationSvcHdle,
                                   UUID_TYPE_16,
                                   (Char_UUID_t *) &uuid ,
                                   BLE_CFG_DIS_SOFTWARE_REVISION_STRING_LEN_MAX,
                                   CHAR_PROP_READ,
                                   ATTR_PERMISSION_NONE,
                                   GATT_DONT_NOTIFY_EVENTS, /* gattEvtMask */
                                   10, /* encryKeySize */
                                   CHAR_VALUE_LEN_VARIABLE, /* isVariable */
                                   &(DIS_Context.SoftwareRevisionStringCharHdle));
  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("Software Revision String Characteristic Added Successfully  %04X \n", 
                 DIS_Context.SoftwareRevisionStringCharHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add Software Revision String Characteristic, Error: %02X !!\n", 
                hciCmdResult);
  }
#endif

#if (BLE_CFG_DIS_SYSTEM_ID != 0)
  /**
   *  Add System ID Characteristic
   */
  uuid = SYSTEM_ID_UUID;
  hciCmdResult = aci_gatt_add_char(DIS_Context.DeviceInformationSvcHdle,
                                   UUID_TYPE_16,
                                   (Char_UUID_t *) &uuid ,
                                   BLE_CFG_DIS_SYSTEM_ID_LEN_MAX,
                                   CHAR_PROP_READ,
                                   ATTR_PERMISSION_NONE,
                                   GATT_DONT_NOTIFY_EVENTS, /* gattEvtMask */
                                   10, /* encryKeySize */
                                   CHAR_VALUE_LEN_CONSTANT, /* isVariable */
                                   &(DIS_Context.SystemIDCharHdle));
  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("System ID Characteristic Added Successfully  %04X \n", 
                 DIS_Context.SystemIDCharHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add System ID Characteristic, Error: %02X !!\n", 
                hciCmdResult);
  }
#endif

#if (BLE_CFG_DIS_IEEE_CERTIFICATION != 0)
  /**
   *  Add IEEE CertificationCharacteristic
   */
  uuid = IEEE_CERTIFICATION_UUID;
  hciCmdResult = aci_gatt_add_char(DIS_Context.DeviceInformationSvcHdle,
                                   UUID_TYPE_16,
                                   (Char_UUID_t *) &uuid ,
                                   BLE_CFG_DIS_IEEE_CERTIFICATION_LEN_MAX,
                                   CHAR_PROP_READ,
                                   ATTR_PERMISSION_NONE,
                                   GATT_DONT_NOTIFY_EVENTS, /* gattEvtMask */
                                   10, /* encryKeySize */
                                   CHAR_VALUE_LEN_VARIABLE, /* isVariable */
                                   &(DIS_Context.IEEECertificationCharHdle));
  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("IEEE Certification Characteristic Added Successfully  %04X \n", 
                 DIS_Context.IEEECertificationCharHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add IEEE Certification Characteristic, Error: %02X !!\n", 
                hciCmdResult);
  }
#endif

#if (BLE_CFG_DIS_PNP_ID != 0)
  /**
   *  Add PNP ID Characteristic
   */
  uuid = PNP_ID_UUID;
  hciCmdResult = aci_gatt_add_char(DIS_Context.DeviceInformationSvcHdle,
                                   UUID_TYPE_16,
                                   (Char_UUID_t *) &uuid ,
                                   BLE_CFG_DIS_PNP_ID_LEN_MAX,
                                   CHAR_PROP_READ,
                                   ATTR_PERMISSION_NONE,
                                   GATT_DONT_NOTIFY_EVENTS, /* gattEvtMask */
                                   10, /* encryKeySize */
                                   CHAR_VALUE_LEN_CONSTANT, /* isVariable */
                                   &(DIS_Context.PNPIDCharHdle));
  if (hciCmdResult == BLE_STATUS_SUCCESS)
  {
    BLE_DBG_DIS_MSG ("PNP ID Characteristic Added Successfully  %04X \n", 
                 DIS_Context.PNPIDCharHdle);
  }
  else
  {
    BLE_DBG_DIS_MSG ("FAILED to add PNP ID Characteristic, Error: %02X !!\n", 
                hciCmdResult);
  }
#endif
      
  return;
}

/**
 * @brief  Characteristic update
 * @param  UUID: UUID of the characteristic
 * @retval None
 */
tBleStatus DIS_UpdateChar(uint16_t UUID, DIS_Data_t *pPData)
{
  tBleStatus return_value;

  switch(UUID)
  {
#if (BLE_CFG_DIS_MANUFACTURER_NAME_STRING != 0)
    case MANUFACTURER_NAME_UUID:
      return_value = aci_gatt_update_char_value(DIS_Context.DeviceInformationSvcHdle,
                                                DIS_Context.ManufacturerNameStringCharHdle,
                                                0,
                                                pPData->Length,
                                                (uint8_t *)pPData->pPayload);
      break;
#endif

#if (BLE_CFG_DIS_MODEL_NUMBER_STRING != 0)
    case MODEL_NUMBER_UUID:
      return_value = aci_gatt_update_char_value(DIS_Context.DeviceInformationSvcHdle,
                                                DIS_Context.ModelNumberStringCharHdle,
                                                0,
                                                pPData->Length,
                                                (uint8_t *)pPData->pPayload);
      break;
#endif

#if (BLE_CFG_DIS_SERIAL_NUMBER_STRING != 0)
    case SERIAL_NUMBER_UUID:
      return_value = aci_gatt_update_char_value(DIS_Context.DeviceInformationSvcHdle,
                                                DIS_Context.SerialNumberStringCharHdle,
                                                0,
                                                pPData->Length,
                                                (uint8_t *)pPData->pPayload);
      break;
#endif

#if (BLE_CFG_DIS_HARDWARE_REVISION_STRING != 0)
    case HARDWARE_REVISION_UUID:
      return_value = aci_gatt_update_char_value(DIS_Context.DeviceInformationSvcHdle,
                                                DIS_Context.HardwareRevisionStringCharHdle,
                                                0,
                                                pPData->Length,
                                                (uint8_t *)pPData->pPayload);
      break;
#endif

#if (BLE_CFG_DIS_FIRMWARE_REVISION_STRING != 0)
    case FIRMWARE_REVISION_UUID:
      return_value = aci_gatt_update_char_value(DIS_Context.DeviceInformationSvcHdle,
                                                DIS_Context.FirmwareRevisionStringCharHdle,
                                                0,
                                                pPData->Length,
                                                (uint8_t *)pPData->pPayload);
      break;
#endif

#if (BLE_CFG_DIS_SOFTWARE_REVISION_STRING != 0)
    case SOFTWARE_REVISION_UUID:
      return_value = aci_gatt_update_char_value(DIS_Context.DeviceInformationSvcHdle,
                                                DIS_Context.SoftwareRevisionStringCharHdle,
                                                0,
                                                pPData->Length,
                                                (uint8_t *)pPData->pPayload);
      break;
#endif

#if (BLE_CFG_DIS_SYSTEM_ID != 0)
    case SYSTEM_ID_UUID:
      return_value = aci_gatt_update_char_value(DIS_Context.DeviceInformationSvcHdle,
                                                DIS_Context.SystemIDCharHdle,
                                                0,
                                                pPData->Length,
                                                (uint8_t *)pPData->pPayload);
      break;
#endif

#if (BLE_CFG_DIS_IEEE_CERTIFICATION != 0)
    case IEEE_CERTIFICATION_UUID:
      return_value = aci_gatt_update_char_value(DIS_Context.DeviceInformationSvcHdle,
                                                DIS_Context.IEEECertificationCharHdle,
                                                0,
                                                pPData->Length,
                                                (uint8_t *)pPData->pPayload);
      break;
#endif

#if (BLE_CFG_DIS_PNP_ID != 0)
    case PNP_ID_UUID:
      return_value = aci_gatt_update_char_value(DIS_Context.DeviceInformationSvcHdle,
                                                DIS_Context.PNPIDCharHdle,
                                                0,
                                                pPData->Length,
                                                (uint8_t *)pPData->pPayload);
      break;
#endif

    default:
      return_value = 0;
      break;
  }

  return return_value;
}/* end DIS_UpdateChar() */

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/