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

bls.h « Inc « svc « ble « STM32_WPAN « ST « Middlewares - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c979316c660dd4a83b9c3be49c8c08ef3f18cde (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
/**
  ******************************************************************************
  * @file    bls.h
  * @author  MCD Application Team
  * @brief   Header for bls.c module
  ******************************************************************************
  * @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
 *
 ******************************************************************************
 */



/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __BLS_H
#define __BLS_H

#ifdef __cplusplus
extern "C" 
{
#endif

/* Includes ------------------------------------------------------------------*/
/* Exported types ------------------------------------------------------------*/
typedef enum
{
  NO_FLAG = 0,
  VALUE_UNIT_KILO_PASCAL = (1<<0),                       /*0 -> Blood pressure systolic, diastolic & Mean values in units of mmHg - if 1 -> in units of kPa*/
  TIME_STAMP_PRESENT = (1<<1),
  PULSE_RATE_PRESENT = (1<<2),
  USER_ID_PRESENT = (1<<3),
  MEASUREMENT_STATUS_PRESENT = (1<<4)
} BLS_Measurement_Flags_t;

typedef enum
{
  BLS_MEASUREMENT_IND_ENABLED_EVT,
  BLS_MEASUREMENT_IND_DISABLED_EVT,
#if (BLE_CFG_BLS_INTERMEDIATE_CUFF_PRESSURE != 0)
  BLS_INTERMEDIATE_CUFF_PRESSURE_NOTIF_ENABLED_EVT,
  BLS_INTERMEDIATE_CUFF_PRESSURE_NOTIF_DISABLED_EVT,   
#endif
} BLS_App_Opcode_Notification_evt_t;

typedef struct
{
  BLS_App_Opcode_Notification_evt_t  BLS_Evt_Opcode;
}BLS_App_Notification_evt_t;

typedef struct
{
  uint16_t  Year;
  uint8_t   Month;
  uint8_t   Day;
  uint8_t   Hours;
  uint8_t   Minutes;
  uint8_t   Seconds;
}BLS_TimeStamp_t;

typedef struct
{
  uint16_t MeasurementValue_Systolic;
  uint16_t MeasurementValue_Diastolic;
  uint16_t MeasurementValue_Mean;
#if (BLE_CFG_BLS_TIME_STAMP_FLAG != 0)
  BLS_TimeStamp_t TimeStamp;
#endif
#if (BLE_CFG_BLS_PULSE_RATE_FLAG != 0)
  uint16_t          PulseRate;
#endif    
#if (BLE_CFG_BLS_USER_ID_FLAG != 0)
  uint8_t          UserID;
#endif        
#if (BLE_CFG_BLS_MEASUREMENT_STATUS_FLAG != 0)
  uint16_t MeasurementStatus;
#endif
  uint8_t Flags;
}BLS_Value_t;
  

/* Exported constants --------------------------------------------------------*/
/* External variables --------------------------------------------------------*/
/* Exported macros -----------------------------------------------------------*/
/* Exported functions ------------------------------------------------------- */
void BLS_Init(void);
void BLS_Update_Char(uint16_t UUID, uint8_t *pPayload);
void BLS_App_Notification(BLS_App_Notification_evt_t * pNotification);

#ifdef __cplusplus
}
#endif

#endif /*__BLS_H */

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