-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcy_ble_rtus.h
176 lines (139 loc) · 6.18 KB
/
cy_ble_rtus.h
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
/***************************************************************************//**
* \file cy_ble_rtus.h
* \version 3.60
*
* \brief
* Contains the function prototypes and constants for Reference Time Update
* service.
*
********************************************************************************
* \copyright
* Copyright 2017-2021, Cypress Semiconductor Corporation. All rights reserved.
* You may use this file only in accordance with the license, terms, conditions,
* disclaimers, and limitations in the end user license agreement accompanying
* the software package with which this file was provided.
*******************************************************************************/
#ifndef CY_BLE_RTUS_H
#define CY_BLE_RTUS_H
#include "cy_ble.h"
#if defined(CY_IP_MXBLESS)
/* C binding of definitions if building with C++ compiler */
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/*******************************************************************************
* API Constants
*******************************************************************************/
#define CY_BLE_RTUS_TIME_UPDATE_CP_SIZE (0x01u)
#define CY_BLE_RTUS_INVALID_CHAR_INDEX (0xFFu)
/* Time Update Control Point Characteristic Values */
#define CY_BLE_RTUS_GET_REF_UPDATE (0x01u)
#define CY_BLE_RTUS_CANCEL_REF_UPDATE (0x02u)
/* Time Update State Characteristic Values
* Current State field
*/
#define CY_BLE_RTUS_CURR_STATE_IDLE (0x00u)
#define CY_BLE_RTUS_CURR_STATE_UPDATE_PENDING (0x01u)
/* Result field */
#define CY_BLE_RTUS_RESULT_SUCCESSFUL (0x00u)
#define CY_BLE_RTUS_RESULT_CANCELED (0x01u)
#define CY_BLE_RTUS_RESULT_NO_CONN (0x02u)
#define CY_BLE_RTUS_RESULT_REF_ERROR (0x03u)
#define CY_BLE_RTUS_RESULT_TIMEOUT (0x04u)
#define CY_BLE_RTUS_RESULT_NO_UPDATE_ATTEMPT (0x05u)
/*******************************************************************************
* Data Types
*******************************************************************************/
/**
* \addtogroup group_ble_service_api_RTUS_definitions
* \{
*/
/** RTUS Characteristic indexes */
typedef enum
{
CY_BLE_RTUS_TIME_UPDATE_CONTROL_POINT, /**< Time Update Control Point Characteristic index */
CY_BLE_RTUS_TIME_UPDATE_STATE, /**< Time Update State Characteristic index */
CY_BLE_RTUS_CHAR_COUNT /**< Total Count of RTUS Characteristics */
} cy_en_ble_rtus_char_index_t;
/** Reference Time Update Service Characteristic Value parameter structure */
typedef struct
{
cy_stc_ble_conn_handle_t connHandle; /**< Peer Device Handle */
cy_en_ble_rtus_char_index_t charIndex; /**< Index of Reference Time Update Service Characteristic */
cy_stc_ble_gatt_value_t *value; /**< Characteristic Value */
} cy_stc_ble_rtus_char_value_t;
/** Time Update State Characteristic structure */
typedef struct
{
uint8_t currentState; /**< Current state */
uint8_t result; /**< Result of Time update */
} cy_stc_ble_rtus_time_update_state_t;
/** Structure with Reference Time Update Service attribute handles */
typedef struct
{
cy_ble_gatt_db_attr_handle_t serviceHandle; /**< Handle of the Reference Time Update Service */
cy_ble_gatt_db_attr_handle_t timeUpdateCpHandle; /**< Handle of the Time Update Control Point Characteristic */
cy_ble_gatt_db_attr_handle_t timeUpdateStateHandle; /**< Handle of the Time Update State Characteristic */
} cy_stc_ble_rtuss_t;
/** Structure with Discovered Attributes Information of Reference Time Update Service */
typedef struct
{
/** Characteristic handle and properties */
cy_stc_ble_srvr_char_info_t charInfo[CY_BLE_RTUS_CHAR_COUNT];
} cy_stc_ble_rtusc_t;
/** Service configuration structure (server) */
typedef struct
{
/** Service GATT DB Handles structure */
const cy_stc_ble_rtuss_t *attrInfo;
} cy_stc_ble_rtuss_config_t;
/** Service Configuration structure (client) */
typedef struct
{
/** Structure with Discovered Attributes Information */
cy_stc_ble_rtusc_t *attrInfo;
/** The Discovery Service index */
uint8_t serviceDiscIdx;
} cy_stc_ble_rtusc_config_t;
/** \} */
/*******************************************************************************
* Function Prototypes
*******************************************************************************/
/**
* \addtogroup group_ble_service_api_RTUS_server_client
* \{
*/
cy_en_ble_api_result_t Cy_BLE_RTUSS_Init(const cy_stc_ble_rtuss_config_t *config);
cy_en_ble_api_result_t Cy_BLE_RTUSC_Init(const cy_stc_ble_rtusc_config_t *config);
void Cy_BLE_RTUS_RegisterAttrCallback(cy_ble_callback_t callbackFunc);
/** \} */
/**
* \addtogroup group_ble_service_api_RTUS_server
* \{
*/
cy_en_ble_api_result_t Cy_BLE_RTUSS_SetCharacteristicValue(cy_en_ble_rtus_char_index_t charIndex, uint8_t attrSize,
uint8_t *attrValue);
cy_en_ble_api_result_t Cy_BLE_RTUSS_GetCharacteristicValue(cy_en_ble_rtus_char_index_t charIndex, uint8_t attrSize,
uint8_t *attrValue);
/** \} */
/**
* \addtogroup group_ble_service_api_RTUS_client
* \{
*/
cy_en_ble_api_result_t Cy_BLE_RTUSC_SetCharacteristicValue(cy_stc_ble_conn_handle_t connHandle,
cy_en_ble_rtus_char_index_t charIndex, uint8_t attrSize,
uint8_t *attrValue);
cy_en_ble_api_result_t Cy_BLE_RTUSC_GetCharacteristicValue(cy_stc_ble_conn_handle_t connHandle,
cy_en_ble_rtus_char_index_t charIndex);
/** \} */
/*******************************************************************************
* External Data references
*******************************************************************************/
extern const cy_stc_ble_rtuss_config_t *cy_ble_rtussConfigPtr;
extern const cy_stc_ble_rtusc_config_t *cy_ble_rtuscConfigPtr;
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* CY_IP_MXBLESS */
#endif /* CY_BLE_RTUS_H */
/* [] END OF FILE */