123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- #ifndef OBSERVER_H
- #define OBSERVER_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #include "bcomdef.h"
- #include "OSAL.h"
- #include "gap.h"
- #define GAPOBSERVERROLE_BD_ADDR 0x400
- #define GAPOBSERVERROLE_MAX_SCAN_RES 0x401
- typedef union
- {
- gapEventHdr_t gap;
- gapDeviceInitDoneEvent_t initDone;
- gapDeviceInfoEvent_t deviceInfo;
- gapDevDiscEvent_t discCmpl;
- } gapObserverRoleEvent_t;
- typedef void (*pfnGapObserverRoleRssiCB_t)
- (
- uint16 connHandle,
- int8 rssi
- );
- typedef void (*pfnGapObserverRoleEventCB_t)
- (
- gapObserverRoleEvent_t *pEvent
- );
- typedef struct
- {
- pfnGapObserverRoleRssiCB_t rssiCB;
- pfnGapObserverRoleEventCB_t eventCB;
- } gapObserverRoleCB_t;
- extern bStatus_t GAPObserverRole_StartDevice( gapObserverRoleCB_t *pAppCallbacks );
- extern bStatus_t GAPObserverRole_SetParameter( uint16 param, uint8 len, void *pValue );
- extern bStatus_t GAPObserverRole_GetParameter( uint16 param, void *pValue );
- extern bStatus_t GAPObserverRole_StartDiscovery( uint8 mode, uint8 activeScan, uint8 whiteList );
- extern bStatus_t GAPObserverRole_CancelDiscovery( void );
- extern void GAPObserverRole_Init( uint8 taskId );
- extern uint16 GAPObserverRole_ProcessEvent( uint8 taskId, uint16 events );
- #ifdef __cplusplus
- }
- #endif
- #endif
|