TI BLE5-Stack API Documentation  3.03.01.00
gap.h
Go to the documentation of this file.
1 /******************************************************************************
2 
3  Group: WCS, BTS
4  $Target Device: DEVICES $
5 
6  ******************************************************************************
7  $License: TI_TEXT 2009 $
8  ******************************************************************************
9  $Release Name: PACKAGE NAME $
10  $Release Date: PACKAGE RELEASE DATE $
11  *****************************************************************************/
12 
21 #ifndef GAP_H
22 #define GAP_H
23 
24 #ifdef __cplusplus
25 extern "C"
26 {
27 #endif
28 
29 /*-------------------------------------------------------------------
30  * INCLUDES
31  */
32 #include <stdbool.h>
33 #include "bcomdef.h"
34 #include "osal.h"
35 #include "sm.h"
36 #include "ll_ae.h"
37 
38 /*-------------------------------------------------------------------
39  * MACROS
40  */
42 #ifndef status_t
43  #define status_t bStatus_t
44 #endif
45 
55 #define GAP_IS_ADDR_RPR(pAddr) ((pAddr[B_ADDR_LEN-1] & RANDOM_ADDR_HDR_MASK) \
56  == PRIVATE_RESOLVE_ADDR_HDR)
57 
66 #define GAP_IS_ADDR_RPN(pAddr) ((pAddr[B_ADDR_LEN-1] & RANDOM_ADDR_HDR_MASK) \
67  == PRIVATE_NON_RESOLVE_ADDR_HDR)
68 
77 #define GAP_IS_ADDR_RS(pAddr) ((pAddr[B_ADDR_LEN-1] & RANDOM_ADDR_HDR_MASK) \
78  == STATIC_ADDR_HDR)
79 
83 #define GAP_IS_ADDR_RAND(pAddr) (GAP_IS_ADDR_RPR(pAddr) | \
84  GAP_IS_ADDR_RPN(pAddr) | \
85  GAP_IS_ADDR_RS(pAddr))
86 
87 /*-------------------------------------------------------------------
88  * CONSTANTS
89  */
90 
107 #define GAP_DEVICE_INIT_DONE_EVENT 0x00
108 
114 #define GAP_ADV_DATA_UPDATE_DONE_EVENT 0x02
115 
119 #define GAP_ADV_MAKE_DISCOVERABLE_DONE_EVENT 0x03
120 
124 #define GAP_ADV_END_DISCOVERABLE_DONE_EVENT 0x04
125 
129 #define GAP_LINK_ESTABLISHED_EVENT 0x05
130 
133 #define GAP_LINK_TERMINATED_EVENT 0x06
134 
139 #define GAP_LINK_PARAM_UPDATE_EVENT 0x07
140 
146 #define GAP_SIGNATURE_UPDATED_EVENT 0x09
147 
152 #define GAP_AUTHENTICATION_COMPLETE_EVENT 0x0A
153 
158 #define GAP_PASSKEY_NEEDED_EVENT 0x0B
159 
165 #define GAP_PERIPHERAL_REQUESTED_SECURITY_EVENT 0x0C
166 
171 #define GAP_BOND_COMPLETE_EVENT 0x0E
172 
178 #define GAP_PAIRING_REQ_EVENT 0x0F
179 
185 #define GAP_AUTHENTICATION_FAILURE_EVT 0x10
186 
192 #define GAP_UPDATE_LINK_PARAM_REQ_EVENT 0x11
193 #define GAP_SCAN_SESSION_END_EVENT 0x12
195 #define GAP_ADV_REMOVE_SET_EVENT 0x13
197 
200 #define GAP_CONNECTING_CANCELLED_EVENT 0x15
201 
205 #define GAP_BOND_LOST_EVENT 0x17
206 
211 #define GAP_LINK_PARAM_UPDATE_REJECT_EVENT 0x18
212 
216 #define GAP_ADV_SET_PERIODIC_ADV_PARAMS_EVENT 0x19
218 #define GAP_ADV_SET_PERIODIC_ADV_DATA_EVENT 0x1A
220 #define GAP_ADV_SET_PERIODIC_ADV_ENABLE_EVENT 0x1B
222 
226 #define GAP_SCAN_CREATE_SYNC_EVENT 0x1C
227 
231 #define GAP_SCAN_SYNC_CANCEL_EVENT 0x1D
233 #define GAP_SCAN_TERMINATE_SYNC_EVENT 0x1E
235 #define GAP_SCAN_PERIODIC_RECEIVE_EVENT 0x1F
237 #define GAP_SCAN_ADD_DEVICE_ADV_LIST_EVENT 0x20
239 #define GAP_SCAN_REMOVE_DEVICE_ADV_LIST_EVENT 0x21
241 #define GAP_SCAN_READ_ADV_LIST_SIZE_EVENT 0x22
243 #define GAP_SCAN_CLEAR_ADV_LIST_EVENT 0x23
245 
249 #define GAP_SCAN_PERIODIC_ADV_SYNC_EST_EVENT 0x24
250 
254 #define GAP_SCAN_PERIODIC_ADV_SYNC_LOST_EVENT 0x25
255 
259 #define GAP_SCAN_PERIODIC_ADV_REPORT_EVENT 0x26
260 
276 #define GAP_EVT_ADV_START_AFTER_ENABLE (uint32_t)BV(0)
277 
282 #define GAP_EVT_ADV_END_AFTER_DISABLE (uint32_t)BV(1)
283 
289 #define GAP_EVT_ADV_START (uint32_t)BV(2)
290 
296 #define GAP_EVT_ADV_END (uint32_t)BV(3)
297 
303 #define GAP_EVT_ADV_SET_TERMINATED (uint32_t)BV(4)
304 
309 #define GAP_EVT_SCAN_REQ_RECEIVED (uint32_t)BV(5)
310 
316 #define GAP_EVT_ADV_DATA_TRUNCATED (uint32_t)BV(6)
317 #define GAP_EVT_SCAN_ENABLED (uint32_t)BV(16)
319 
325 #define GAP_EVT_SCAN_DISABLED (uint32_t)BV(17)
326 
331 #define GAP_EVT_SCAN_PRD_ENDED (uint32_t)BV(18)
332 #define GAP_EVT_SCAN_DUR_ENDED (uint32_t)BV(19)
334 
339 #define GAP_EVT_SCAN_INT_ENDED (uint32_t)BV(20)
340 #define GAP_EVT_SCAN_WND_ENDED (uint32_t)BV(21)
342 
348 #define GAP_EVT_ADV_REPORT (uint32_t)BV(22)
349 
354 #define GAP_EVT_ADV_REPORT_FULL (uint32_t)BV(23)
355 
362 #define GAP_EVT_PRD_ADV_SYNC_ESTABLISHED (uint32_t)BV(24)
363 
369 #define GAP_EVT_PRD_ADV_REPORT (uint32_t)BV(25)
370 
376 #define GAP_EVT_PRD_ADV_SYNC_LOST (uint32_t)BV(26)
377 #define GAP_EVT_INSUFFICIENT_MEMORY (uint32_t)BV(31)
380 
382 #define GAP_EVT_ADV_EVT_MASK (GAP_EVT_ADV_START_AFTER_ENABLE | \
383  GAP_EVT_ADV_END_AFTER_DISABLE | \
384  GAP_EVT_ADV_START | \
385  GAP_EVT_ADV_END | \
386  GAP_EVT_ADV_SET_TERMINATED | \
387  GAP_EVT_SCAN_REQ_RECEIVED | \
388  GAP_EVT_ADV_DATA_TRUNCATED | \
389  GAP_EVT_INSUFFICIENT_MEMORY)
390 
392 #define GAP_EVT_SCAN_EVT_MASK (GAP_EVT_SCAN_ENABLED | \
393  GAP_EVT_SCAN_DISABLED | \
394  GAP_EVT_SCAN_PRD_ENDED | \
395  GAP_EVT_SCAN_DUR_ENDED | \
396  GAP_EVT_SCAN_INT_ENDED | \
397  GAP_EVT_SCAN_WND_ENDED | \
398  GAP_EVT_ADV_REPORT | \
399  GAP_EVT_ADV_REPORT_FULL | \
400  GAP_EVT_PRD_ADV_SYNC_ESTABLISHED | \
401  GAP_EVT_PRD_ADV_REPORT | \
402  GAP_EVT_PRD_ADV_SYNC_LOST | \
403  GAP_EVT_INSUFFICIENT_MEMORY)
404 
421 typedef enum
422 {
441 
460 
462  GAP_CONFIG_PARAM_COUNT
465 
472 {
481 
495 
507 
517 
526 
535 
537 
541  GAP_PARAM_AUTH_TASK_ID,
542 
547  GAP_PARAM_DEPRECATED,
548 
556  GAP_PARAM_GGS_PARAMS,
557 
558 #if defined ( TESTMODES )
559 
562  GAP_PARAM_GAP_TESTCODE,
563 
567  GAP_PARAM_SM_TESTCODE,
568 
572  GAP_PARAM_GATT_TESTCODE,
573 
577  GAP_PARAM_ATT_TESTCODE,
578 
583  GAP_PARAM_L2CAP_TESTCODE,
584 
594  GAP_PARAM_SET_SCAN_CHAN_TESTCODE,
595 
596 #endif // TESTMODES
597 
604  GAP_STUB1_NOT_TESTCODE,
605 
612  GAP_STUB2_NOT_TESTCODE,
613 
620  GAP_STUB3_NOT_TESTCODE,
621 
628  GAP_STUB4_NOT_TESTCODE,
629 
636  GAP_STUB5_NOT_TESTCODE,
637 
647  GAP_PARAM_SET_SCAN_CHAN,
648 
652  GAP_PARAMID_MAX
654 };
655 
669 #define GAP_PROFILE_BROADCASTER 0x01
671 #define GAP_PROFILE_OBSERVER 0x02
673 
677 #define GAP_PROFILE_PERIPHERAL 0x04
678 
682 #define GAP_PROFILE_CENTRAL 0x08
683 
690 typedef enum
691 {
694 
700 
702 typedef enum
703 {
711 
713 typedef enum
714 {
717  ADDRTYPE_PUBLIC_ID = 0x02,
725 
727 typedef enum
728 {
732 
737 #define SET_ADDRTYPE_ID 0x02
739 #define MASK_ADDRTYPE_ID 0x01
741 
747 #define RANDOM_ADDR_HDR_MASK 0xC0
749 #define STATIC_ADDR_HDR 0xC0
751 #define PRIVATE_NON_RESOLVE_ADDR_HDR 0x80
753 #define PRIVATE_RESOLVE_ADDR_HDR 0x40
755 
763 #define GAP_ADTYPE_FLAGS 0x01
765 #define GAP_ADTYPE_16BIT_MORE 0x02
767 #define GAP_ADTYPE_16BIT_COMPLETE 0x03
769 #define GAP_ADTYPE_32BIT_MORE 0x04
771 #define GAP_ADTYPE_32BIT_COMPLETE 0x05
773 #define GAP_ADTYPE_128BIT_MORE 0x06
775 #define GAP_ADTYPE_128BIT_COMPLETE 0x07
777 #define GAP_ADTYPE_LOCAL_NAME_SHORT 0x08
779 #define GAP_ADTYPE_LOCAL_NAME_COMPLETE 0x09
781 #define GAP_ADTYPE_POWER_LEVEL 0x0A
783 #define GAP_ADTYPE_OOB_CLASS_OF_DEVICE 0x0D
785 #define GAP_ADTYPE_OOB_SIMPLE_PAIRING_HASHC 0x0E
787 #define GAP_ADTYPE_OOB_SIMPLE_PAIRING_RANDR 0x0F
789 #define GAP_ADTYPE_SM_TK 0x10
791 #define GAP_ADTYPE_SM_OOB_FLAG 0x11
793 
797 #define GAP_ADTYPE_PERIPHERAL_CONN_INTERVAL_RANGE 0x12
798 #define GAP_ADTYPE_SIGNED_DATA 0x13
800 #define GAP_ADTYPE_SERVICES_LIST_16BIT 0x14
802 #define GAP_ADTYPE_SERVICES_LIST_128BIT 0x15
804 #define GAP_ADTYPE_SERVICE_DATA 0x16
806 #define GAP_ADTYPE_PUBLIC_TARGET_ADDR 0x17
808 #define GAP_ADTYPE_RANDOM_TARGET_ADDR 0x18
810 #define GAP_ADTYPE_APPEARANCE 0x19
812 #define GAP_ADTYPE_ADV_INTERVAL 0x1A
814 #define GAP_ADTYPE_LE_BD_ADDR 0x1B
816 #define GAP_ADTYPE_LE_ROLE 0x1C
818 #define GAP_ADTYPE_SIMPLE_PAIRING_HASHC_256 0x1D
820 #define GAP_ADTYPE_SIMPLE_PAIRING_RANDR_256 0x1E
822 #define GAP_ADTYPE_SERVICE_DATA_32BIT 0x20
824 #define GAP_ADTYPE_SERVICE_DATA_128BIT 0x21
826 #define GAP_ADTYPE_3D_INFO_DATA 0x3D
828 
832 #define GAP_ADTYPE_MANUFACTURER_SPECIFIC 0xFF
833 #define GAP_ADTYPE_FLAGS_LIMITED 0x01
835 #define GAP_ADTYPE_FLAGS_GENERAL 0x02
837 #define GAP_ADTYPE_FLAGS_BREDR_NOT_SUPPORTED 0x04
839 
845 #define GAP_STATE_IDLE 0x00
846 #define GAP_STATE_ADV 0x01
847 #define GAP_STATE_SCAN 0x02
848 #define GAP_STATE_INIT 0x04
849 
855 #define GAP_APPEARE_UNKNOWN 0x0000
856 #define GAP_APPEARE_GENERIC_PHONE 0x0040
857 #define GAP_APPEARE_GENERIC_COMPUTER 0x0080
858 #define GAP_APPEARE_GENERIC_WATCH 0x00C0
859 #define GAP_APPEARE_WATCH_SPORTS 0x00C1
860 #define GAP_APPEARE_GENERIC_CLOCK 0x0100
861 #define GAP_APPEARE_GENERIC_DISPLAY 0x0140
862 #define GAP_APPEARE_GENERIC_RC 0x0180
863 #define GAP_APPEARE_GENERIC_EYE_GALSSES 0x01C0
864 #define GAP_APPEARE_GENERIC_TAG 0x0200
865 #define GAP_APPEARE_GENERIC_KEYRING 0x0240
866 #define GAP_APPEARE_GENERIC_MEDIA_PLAYER 0x0280
867 #define GAP_APPEARE_GENERIC_BARCODE_SCANNER 0x02C0
868 #define GAP_APPEARE_GENERIC_THERMOMETER 0x0300
869 #define GAP_APPEARE_GENERIC_THERMO_EAR 0x0301
870 #define GAP_APPEARE_GENERIC_HR_SENSOR 0x0340
871 #define GAP_APPEARE_GENERIC_HRS_BELT 0x0341
872 #define GAP_APPEARE_GENERIC_BLOOD_PRESSURE 0x0380
873 #define GAP_APPEARE_GENERIC_BP_ARM 0x0381
874 #define GAP_APPEARE_GENERIC_BP_WRIST 0x0382
875 #define GAP_APPEARE_GENERIC_HID 0x03C0
876 #define GAP_APPEARE_HID_KEYBOARD 0x03C1
877 #define GAP_APPEARE_HID_MOUSE 0x03C2
878 #define GAP_APPEARE_HID_JOYSTIC 0x03C3
879 #define GAP_APPEARE_HID_GAMEPAD 0x03C4
880 #define GAP_APPEARE_HID_DIGITIZER_TYABLET 0x03C5
881 #define GAP_APPEARE_HID_DIGITAL_CARDREADER 0x03C6
882 #define GAP_APPEARE_HID_DIGITAL_PEN 0x03C7
883 #define GAP_APPEARE_HID_BARCODE_SCANNER 0x03C8
884 
890 #define GAP_PRIVACY_MODE_NETWORK 0
891 #define GAP_PRIVACY_MODE_DEVICE 1
892 
897 typedef enum
898 {
903 
907 typedef enum
908 {
910  GAP_CONN_EVT_STAT_SUCCESS = LL_CONN_EVT_STAT_SUCCESS,
912  GAP_CONN_EVT_STAT_CRC_ERROR = LL_CONN_EVT_STAT_CRC_ERROR,
914  GAP_CONN_EVT_STAT_MISSED = LL_CONN_EVT_STAT_MISSED
916 
920 typedef enum
921 {
923  GAP_CONN_EVT_TASK_TYPE_ADV = LL_TASK_ID_ADVERTISER,
925  GAP_CONN_EVT_TASK_TYPE_INIT = LL_TASK_ID_INITIATOR,
927  GAP_CONN_EVT_TASK_TYPE_PERIPHERAL = LL_TASK_ID_PERIPHERAL,
929  GAP_CONN_EVT_TASK_TYPE_SCAN = LL_TASK_ID_SCANNER,
931  GAP_CONN_EVT_TASK_TYPE_CENTRAL = LL_TASK_ID_CENTRAL,
932  // No task
933  GAP_CONN_EVT_TASK_TYPE_NONE = LL_TASK_ID_NONE
935 
939 typedef enum
940 {
944 
948 // Notes: This is a bitmask enum.
949 // When adding new events, make sure to add them to ll_common.h
950 // under Timesync events.
951 typedef enum
952 {
958 
961 /*-------------------------------------------------------------------
962  * TYPEDEFS
963  */
964 
970 typedef struct
972 {
974  uint8_t opcode;
975 } gapEventHdr_t;
976 
983 typedef struct
984 {
986  uint16_t intervalMin;
988  uint16_t intervalMax;
990  uint16_t latency;
992  uint16_t timeout;
994 
1002 typedef struct
1003 {
1005  uint8_t opcode;
1006  uint8_t numDataPkts;
1007  uint16_t dataPktLen;
1008  uint8_t devAddr[B_ADDR_LEN];
1010 
1023 typedef struct
1024 {
1026  uint8_t opcode;
1027  uint8_t addrType;
1028  uint8_t devAddr[B_ADDR_LEN];
1029  uint32_t signCounter;
1031 
1037 typedef struct
1038 {
1039  uint16_t connectionHandle;
1040  uint16_t intervalMin;
1041  uint16_t intervalMax;
1042  uint16_t connLatency;
1043  uint16_t connTimeout;
1046 
1052 typedef struct
1053 {
1054  uint16_t connectionHandle;
1055  uint16_t intervalMin;
1056  uint16_t intervalMax;
1057  uint16_t connLatency;
1058  uint16_t connTimeout;
1060  uint8_t accepted;
1062 
1069 typedef struct
1070 {
1072  uint8_t opcode;
1075 
1092 typedef struct
1093 {
1095  uint8_t opcode;
1096  uint8_t devAddrType;
1097  uint8_t devAddr[B_ADDR_LEN];
1098  uint16_t connectionHandle;
1099  uint8_t connRole;
1100  uint16_t connInterval;
1101  uint16_t connLatency;
1102  uint16_t connTimeout;
1103  uint8_t clockAccuracy;
1105 
1112 typedef struct
1113 {
1115  uint8_t opcode;
1116  uint8_t status;
1117  uint16_t connectionHandle;
1118  uint16_t connInterval;
1119  uint16_t connLatency;
1120  uint16_t connTimeout;
1122 
1128 typedef struct
1129 {
1131  uint8_t opcode;
1132  uint16_t connectionHandle;
1133  uint8_t reason;
1135 
1144 typedef struct
1145 {
1147  uint8_t opcode;
1148  uint8_t deviceAddr[B_ADDR_LEN];
1149  uint16_t connectionHandle;
1150  uint8_t uiInputs;
1151  uint8_t uiOutputs;
1152  uint32_t numComparison;
1154 
1162 typedef struct
1163 {
1165  uint8_t opcode;
1166  uint16_t connectionHandle;
1167  uint8_t authState;
1173 
1178 typedef struct
1179 {
1180  uint16_t connectionHandle;
1182 } gapAuthParams_t;
1183 
1191 typedef struct
1192 {
1194  uint8_t opcode;
1195  uint16_t connectionHandle;
1196  uint8_t deviceAddr[B_ADDR_LEN];
1197 
1202  uint8_t authReq;
1204 
1213 typedef struct
1214 {
1216  uint8_t opcode;
1217  uint16_t connectionHandle;
1219 
1224 typedef struct
1225 {
1226  uint8_t ioCap;
1227  uint8_t oobDataFlag;
1228  uint8_t authReq;
1229  uint8_t maxEncKeySize;
1231 } gapPairingReq_t;
1232 
1244 typedef struct
1245 {
1247  uint8_t opcode;
1248  uint16_t connectionHandle;
1251 
1255 typedef struct
1256 {
1257  GAP_ConnEvtStat_t status;
1258  uint16_t handle;
1259  uint8_t channel;
1261  int8_t lastRssi;
1262  uint16_t packets;
1265  uint16_t errors;
1267  GAP_ConnEvtTaskType_t nextTaskType;
1269  uint32_t nextTaskTime;
1270  uint16_t eventCounter; // event Counter
1271  uint32_t timeStamp; // timestamp (anchor point)
1272  GAP_CB_Event_e eventType; // event type of the connection report.
1274 
1282 typedef struct
1283 {
1285  uint8_t opcode;
1286  uint16_t connectionHandle;
1287  uint8_t deviceAddr[B_ADDR_LEN];
1289 
1292 /*-------------------------------------------------------------------
1293  * CALLBACKS
1294  */
1295 
1301 typedef uint8_t(*pfnSuppCentAddrRes_t)
1304  uint8_t *deviceAddr,
1305  GAP_Peer_Addr_Types_t addrType
1306 );
1307 
1308 //TODO try to move these to gap_internal.h
1309 
1311 typedef void (*pfnGapIdleCB_t)();
1312 
1314 typedef uint8_t(*pfnGapDevPrivModeCB_t)
1316  GAP_Peer_Addr_Types_t addrType,
1317  uint8_t *pAddr
1318 );
1319 
1321 typedef struct
1322 {
1326 } gapBondMgrCBs_t;
1327 
1340 typedef void (*pfnGapCB_t)
1342  uint32_t event,
1343  void *pBuf,
1344  uintptr_t arg
1345 );
1346 
1361 typedef void (*pfnGapConnEvtCB_t)
1364  Gap_ConnEventRpt_t *pReport
1365 );
1366 
1369 /*-------------------------------------------------------------------
1370  * FUNCTIONS - Initialization and Configuration
1371  */
1372 
1403 extern bStatus_t GAP_DeviceInit(uint8_t profileRole, uint8_t taskID,
1404  GAP_Addr_Modes_t addrMode,
1405  uint8_t* pRandomAddr);
1406 
1437 extern bStatus_t GAP_DeviceInit_noGAPBondMgr(uint8_t profileRole, uint8_t taskID,
1438  GAP_Addr_Modes_t addrMode,
1439  uint8_t* pRandomAddr);
1440 
1452 extern bStatus_t GAP_SetParamValue(uint16_t paramID, uint16_t paramValue);
1453 
1462 extern uint16_t GAP_GetParamValue(uint16_t paramID);
1463 
1472 extern void GAP_RegisterForMsgs(uint8_t taskID);
1473 
1479 extern void GAP_RegisterBondMgrCBs(gapBondMgrCBs_t *pCBs);
1480 
1498  uint8_t *pAddr, uint8_t mode);
1499 
1500 /*-------------------------------------------------------------------
1501  * FUNCTIONS - Link Establishment
1502  */
1503 
1518 extern bStatus_t GAP_TerminateLinkReq(uint16_t connectionHandle, uint8_t reason);
1519 
1542 
1567  *pParams);
1568 
1574 extern uint8_t GAP_NumActiveConnections(void);
1575 
1609  GAP_CB_Action_t action,
1610  GAP_CB_Event_e event,
1611  uint16_t connHandle);
1612 
1613 /*-------------------------------------------------------------------
1614  * FUNCTIONS - GAP Configuration
1615  */
1616 
1632 extern bStatus_t GapConfig_SetParameter(Gap_configParamIds_t param,
1633  void *pValue);
1634 
1644 extern uint8_t *GAP_GetDevAddress(uint8 wantIA);
1645 
1656 extern uint8 *GAP_GetDevAddressByType( uint8 wantIA, uint8 deviceAddrType);
1657 
1667 extern uint8_t *GAP_GetIRK(void);
1668 
1678 extern uint8_t *GAP_GetSRK(void);
1679 
1680 /*-------------------------------------------------------------------
1681  * FUNCTIONS - Pairing
1682  */
1683 
1715  gapPairingReq_t *pPairReq);
1716 
1726 extern uint8_t GAP_isPairing(void);
1727 
1745 extern bStatus_t GAP_TerminateAuth(uint16_t connectionHandle, uint8_t reason);
1746 
1768 extern bStatus_t GAP_PasskeyUpdate(uint8_t *pPasskey, uint16_t connectionHandle);
1769 
1787 extern bStatus_t GAP_PasscodeUpdate(uint32_t passcode, uint16_t connectionHandle);
1788 
1805 extern bStatus_t GAP_SendPeripheralSecurityRequest(uint16_t connectionHandle,
1806  uint8_t authReq);
1807 
1825 extern bStatus_t GAP_Signable(uint16_t connectionHandle, uint8_t authenticated,
1826  smSigningInfo_t *pParams);
1827 
1850 extern bStatus_t GAP_Bond(uint16_t connectionHandle, uint8_t authenticated,
1851  uint8_t secureConnections, smSecurityInfo_t *pParams,
1852  uint8_t startEncryption);
1853 
1854 /*-------------------------------------------------------------------
1855  * TASK FUNCTIONS - To only be used in osal_icall_ble.c
1856  */
1857 
1865 extern void GAP_Init(uint8_t task_id);
1866 
1877 extern uint16_t GAP_ProcessEvent(uint8_t task_id, uint16_t events);
1878 
1879 /*-------------------------------------------------------------------
1880 -------------------------------------------------------------------*/
1881 
1882 #ifdef __cplusplus
1883 }
1884 #endif
1885 
1886 #endif /* GAP_H */
1887 
uint8_t(* pfnSuppCentAddrRes_t)(uint8_t *deviceAddr, GAP_Peer_Addr_Types_t addrType)
Central Address Resolution (CAR) Support Callback Function.
Definition: gap.h:1303
Definition: gap.h:494
GAP_Addr_Types_t
Address types used for identifying peer address type.
Definition: gap.h:713
osal_event_hdr_t hdr
GAP_MSG_EVENT and status
Definition: gap.h:1025
uint8_t * GAP_GetDevAddress(uint8 wantIA)
This API allows the software components in the Z-Stack to be written independently of the specifics o...
GAP_Peer_Addr_Types_t
Address types used for specifying peer address type.
Definition: gap.h:727
uint8_t addrType
Device&#39;s address type for devAddr.
Definition: gap.h:1027
void(* pfnGapConnEvtCB_t)(Gap_ConnEventRpt_t *pReport)
Definition: gap.h:1362
This file contains the interface to the SM.
No address provided.
Definition: gap.h:723
2 MBPS
Definition: gap.h:900
Definition: sm.h:194
Definition: gap.h:516
uint8_t opcode
GAP_BOND_COMPLETE_EVENT
Definition: gap.h:1216
smSecurityInfo_t * pSecurityInfo
security information from this device
Definition: gap.h:1168
Random (static) Identity Address (corresponds to peer&#39;s RPA)
Definition: gap.h:720
Definition: gap.h:1178
bStatus_t GAP_TerminateAuth(uint16_t connectionHandle, uint8_t reason)
Connection established, procedure 0.
Definition: gap.h:954
bStatus_t GAP_SendPeripheralSecurityRequest(uint16_t connectionHandle, uint8_t authReq)
smSigningInfo_t * pSigningInfo
Signing information.
Definition: gap.h:1169
uint16_t handle
connection handle
Definition: gap.h:1258
GAP_ConnEvtTaskType_t
Definition: gap.h:920
PHY was updated, procedure 1.
Definition: gap.h:955
osal_event_hdr_t hdr
GAP_MSG_EVENT and status
Definition: gap.h:1004
Definition: gap.h:716
Definition: gap.h:1282
Deny all parameter update requests.
Definition: gap.h:693
bStatus_t GAP_SetParamValue(uint16_t paramID, uint16_t paramValue)
Definition: gap.h:1144
GAP_CB_Action_t
Definition: gap.h:939
osal_event_hdr_t hdr
GAP_MSG_EVENT and status
Definition: gap.h:973
Gap_configParamIds_t
Definition: gap.h:421
Definition: gap.h:983
Definition: gap.h:1002
Definition: gap.h:1255
uint8_t maxEncKeySize
Pairing Request Maximum Encryption Key Size field.
Definition: gap.h:1229
uint8_t opcode
GAP_DEVICE_INIT_DONE_EVENT
Definition: gap.h:1005
uint16_t connectionHandle
connection Handle
Definition: gap.h:1248
Register a callback.
Definition: gap.h:941
Connection event occurred successfully.
Definition: gap.h:910
GAP_ConnEvtStat_t status
status of connection event
Definition: gap.h:1257
bStatus_t Gap_RegisterConnEventCb(pfnGapConnEvtCB_t cb, GAP_CB_Action_t action, GAP_CB_Event_e event, uint16_t connHandle)
GAP event header format.
Definition: gap.h:971
Definition: gap.h:1213
uint16_t timeout
Connection Timeout (0x000A - 0x0C80 * 10 ms)
Definition: gap.h:992
GAP_ConnEvtTaskType_t nextTaskType
Type of next BLE task.
Definition: gap.h:1267
Definition: gap.h:1191
Definition: gap.h:698
uint16_t dataPktLen
HC_LE_Data_Packet_Length.
Definition: gap.h:1007
Definition: gap.h:705
Definition: gap.h:1244
int8_t lastRssi
Definition: gap.h:1261
uint16_t intervalMin
Minimum value for the connection event (interval. 0x0006 - 0x0C80 * 1.25 ms)
Definition: gap.h:986
1 MBPS
Definition: gap.h:899
uint8_t uiInputs
Pairing User Interface Inputs - Ask user to input passcode.
Definition: gap.h:1150
osal_event_hdr_t hdr
GAP_MSG_EVENT and status
Definition: gap.h:1215
GAP_ConnEvtStat_t
Definition: gap.h:907
bStatus_t GAP_TerminateLinkReq(uint16_t connectionHandle, uint8_t reason)
Random Device Address (controller unable to resolve)
Definition: gap.h:722
osal_event_hdr_t hdr
GAP_MSG_EVENT and status
Definition: gap.h:1146
bStatus_t GAP_UpdateLinkParamReq(gapUpdateLinkParamReq_t *pParams)
void GAP_RegisterForMsgs(uint8_t taskID)
keyDist_t keyDist
Pairing Request Key Distribution field.
Definition: gap.h:1230
uint8_t channel
BLE RF channel index (0-39)
Definition: gap.h:1259
uint8_t ioCap
Pairing Request ioCap field.
Definition: gap.h:1226
uint16_t connectionHandle
connection Handle
Definition: gap.h:1217
GAP_ConnEvtPhy_t
Definition: gap.h:897
Definition: gap.h:1023
Definition: sm.h:148
osal_event_hdr_t hdr
GAP_MSG_EVENT and status
Definition: gap.h:1284
Gap_updateDecision_t
Definition: gap.h:690
Public Identity Address (corresponds to peer&#39;s RPA)
Definition: gap.h:718
uint8_t opcode
GAP_SIGNATURE_UPDATED_EVENT
Definition: gap.h:1026
void(* pfnGapCB_t)(uint32_t event, void *pBuf, uintptr_t arg)
Definition: gap.h:1341
smIdentityInfo_t * pIdentityInfo
identity information
Definition: gap.h:1171
Connection event in peripheral role.
Definition: gap.h:927
uint8_t * GAP_GetIRK(void)
Definition: sm.h:205
void GAP_RegisterBondMgrCBs(gapBondMgrCBs_t *pCBs)
bStatus_t GAP_Bond(uint16_t connectionHandle, uint8_t authenticated, uint8_t secureConnections, smSecurityInfo_t *pParams, uint8_t startEncryption)
uint8_t uiOutputs
Pairing User Interface Outputs - Display passcode.
Definition: gap.h:1151
uint16_t connectionHandle
Connection handle.
Definition: gap.h:1149
uint16_t GAP_ProcessEvent(uint8_t task_id, uint16_t events)
osal_event_hdr_t hdr
GAP_MSG_EVENT and status
Definition: gap.h:1193
Coded-S2 or Coded-S8.
Definition: gap.h:901
smLinkSecurityReq_t secReqs
Pairing Control info.
Definition: gap.h:1181
uint16_t GAP_GetParamValue(uint16_t paramID)
bStatus_t GAP_PasscodeUpdate(uint32_t passcode, uint16_t connectionHandle)
Always Use Resolvable Private Address with Random Identity Address.
Definition: gap.h:709
GAP_CB_Event_e
Definition: gap.h:951
pfnSuppCentAddrRes_t suppCentAddrResCB
Supports Central Address Resolution.
Definition: gap.h:1323
Definition: gap.h:534
uint16_t connectionHandle
Connection Handle.
Definition: gap.h:1195
uint16_t errors
Total number of CRC errors for the entire connection.
Definition: gap.h:1265
osal_event_hdr_t hdr
GAP_MSG_EVENT and status
Definition: gap.h:1164
Type definitions and macros for BLE stack.
uint32_t numComparison
Numeric Comparison value to be displayed.
Definition: gap.h:1152
osal_event_hdr_t hdr
GAP_MSG_EVENT and status
Definition: gap.h:1246
uint16_t latency
Number of LL latency connection events (0x0000 - 0x03e8)
Definition: gap.h:990
Connection event in central role.
Definition: gap.h:931
uint8_t authReq
Definition: gap.h:1202
uint8_t opcode
GAP_PAIRING_REQ_EVENT
Definition: gap.h:1247
No data was received during connection event.
Definition: gap.h:914
Public Device Address.
Definition: gap.h:715
smSecurityInfo_t * pDevSecInfo
security information from connected device
Definition: gap.h:1170
uint8_t GAP_NumActiveConnections(void)
Initiating a connection.
Definition: gap.h:925
void(* pfnGapIdleCB_t)()
GAP Idle Callback Function.
Definition: gap.h:1311
Definition: sm.h:215
Invalid event type.
Definition: gap.h:953
Definition: gap.h:506
uint8 * GAP_GetDevAddressByType(uint8 wantIA, uint8 deviceAddrType)
Definition: gap.h:525
Can be used by the application to set the SRK.
Definition: gap.h:459
OSAL Event Header.
Definition: osal.h:92
Connection event failed because all packets had CRC errors.
Definition: gap.h:912
Gap_ParamIDs_t
Definition: gap.h:471
Always Use Public Address.
Definition: gap.h:704
bStatus_t GAP_UpdateLinkParamReqReply(gapUpdateLinkParamReqReply_t *pParams)
Can be used by the application to set the IRK.
Definition: gap.h:440
uint8_t opcode
GAP_PASSKEY_NEEDED_EVENT
Definition: gap.h:1147
Advertiser.
Definition: gap.h:923
bStatus_t GAP_DeviceInit(uint8_t profileRole, uint8_t taskID, GAP_Addr_Modes_t addrMode, uint8_t *pRandomAddr)
Definition: gap.h:480
uint8_t(* pfnGapDevPrivModeCB_t)(GAP_Peer_Addr_Types_t addrType, uint8_t *pAddr)
GAP Device Privacy Mode Callback Function.
Definition: gap.h:1315
uint8_t authState
TRUE if the pairing was authenticated (MITM)
Definition: gap.h:1167
void GAP_Init(uint8_t task_id)
uint8_t opcode
GAP type of command. GAP Event IDs.
Definition: gap.h:974
#define B_ADDR_LEN
Default Public and Random Address Length.
Definition: bcomdef.h:102
uint8_t opcode
GAP_BOND_LOST_EVENT
Definition: gap.h:1285
uint8_t numDataPkts
HC_Total_Num_LE_Data_Packets.
Definition: gap.h:1006
Definition: gap.h:1162
Callback Registration Structure.
Definition: gap.h:1321
uint8_t GAP_isPairing(void)
uint8_t authReq
Pairing Request Auth Req field.
Definition: gap.h:1228
uint32_t nextTaskTime
Time to next BLE task (in us). 0xFFFFFFFF if there is no next task.
Definition: gap.h:1269
uint8_t * GAP_GetSRK(void)
uint16_t intervalMax
Maximum value for the connection event (interval. 0x0006 - 0x0C80 * 1.25 ms)
Definition: gap.h:988
pfnGapIdleCB_t gapIdleCB
GAP Idle callback.
Definition: gap.h:1324
uint8_t opcode
GAP_AUTHENTICATION_COMPLETE_EVENT
Definition: gap.h:1165
GAP_ConnEvtPhy_t phy
PHY of connection event.
Definition: gap.h:1260
uint8_t oobDataFlag
Pairing Request OOB Data Flag field.
Definition: gap.h:1227
uint16_t connectionHandle
Connection Handle from controller used to ref the device.
Definition: gap.h:1166
Status_t bStatus_t
BLE Generic Status return.
Definition: bcomdef.h:246
Random or Random ID Address.
Definition: gap.h:730
Accept all parameter update requests.
Definition: gap.h:692
bStatus_t GAP_DeviceInit_noGAPBondMgr(uint8_t profileRole, uint8_t taskID, GAP_Addr_Modes_t addrMode, uint8_t *pRandomAddr)
uint16_t connectionHandle
Connection Handle.
Definition: gap.h:1286
bStatus_t GAP_SetPrivacyMode(GAP_Peer_Addr_Types_t addrType, uint8_t *pAddr, uint8_t mode)
Definition: gap.h:1224
bStatus_t GapConfig_SetParameter(Gap_configParamIds_t param, void *pValue)
bStatus_t GAP_Signable(uint16_t connectionHandle, uint8_t authenticated, smSigningInfo_t *pParams)
All connection Events.
Definition: gap.h:956
Always Use Resolvable Private Address with Public Identity Address.
Definition: gap.h:707
bStatus_t GAP_PasskeyUpdate(uint8_t *pPasskey, uint16_t connectionHandle)
gapPairingReq_t pairReq
The Pairing Request fields received.
Definition: gap.h:1249
Scanner.
Definition: gap.h:929
Public or Public ID Address.
Definition: gap.h:729
bStatus_t GAP_Authenticate(gapAuthParams_t *pParams, gapPairingReq_t *pPairReq)
uint32_t signCounter
new Signed Counter
Definition: gap.h:1029
Unregister a callback
Definition: gap.h:942
GAP_Addr_Modes_t
Address modes to initialize the local device.
Definition: gap.h:702
uint8_t opcode
GAP_PERIPHERAL_REQUESTED_SECURITY_EVENT
Definition: gap.h:1194
pfnGapDevPrivModeCB_t gapDevPrivModeCB
GAP Device Privacy Mode callback.
Definition: gap.h:1325
uint16_t connectionHandle
Connection Handle from controller,.
Definition: gap.h:1180
© Copyright 1995-2024, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale