| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703 |
- /******************************************************************************
- *
- * Copyright (C) 1999-2012 Broadcom Corporation
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ******************************************************************************/
- /******************************************************************************
- *
- * This file contains the Bluetooth Manager (BTM) API function external
- * definitions.
- *
- ******************************************************************************/
- #ifndef BTM_BLE_API_H
- #define BTM_BLE_API_H
- #include "common/bt_defs.h"
- #include "stack/btm_api.h"
- #include "common/bt_common_types.h"
- #define CHANNEL_MAP_LEN 5
- typedef UINT8 tBTM_BLE_CHNL_MAP[CHANNEL_MAP_LEN];
- /* 0x00-0x04 only used for set advertising parameter command */
- #define BTM_BLE_CONNECT_EVT 0x00 /* 0x00-0x04 only used for set advertising
- parameter command */
- #define BTM_BLE_CONNECT_DIR_EVT 0x01 /* Connectable directed advertising */
- #define BTM_BLE_DISCOVER_EVT 0x02 /* Scannable undirected advertising */
- #define BTM_BLE_NON_CONNECT_EVT 0x03 /* Non connectable undirected advertising */
- #define BTM_BLE_CONNECT_LO_DUTY_DIR_EVT 0x04 /* Connectable low duty
- cycle directed advertising */
- /* 0x00 - 0x05 can be received on adv event type */
- #define BTM_BLE_SCAN_RSP_EVT 0x04
- #define BTM_BLE_SCAN_REQ_EVT 0x05
- #define BTM_BLE_UNKNOWN_EVT 0xff
- #define BTM_BLE_UNKNOWN_EVT 0xff
- typedef UINT8 tBTM_BLE_EVT;
- typedef UINT8 tBTM_BLE_CONN_MODE;
- typedef UINT32 tBTM_BLE_REF_VALUE;
- #define BTM_BLE_SCAN_MODE_PASS 0
- #define BTM_BLE_SCAN_MODE_ACTI 1
- #define BTM_BLE_SCAN_MODE_NONE 0xff
- typedef UINT8 tBLE_SCAN_MODE;
- #define BTM_BLE_BATCH_SCAN_MODE_DISABLE 0
- #define BTM_BLE_BATCH_SCAN_MODE_PASS 1
- #define BTM_BLE_BATCH_SCAN_MODE_ACTI 2
- #define BTM_BLE_BATCH_SCAN_MODE_PASS_ACTI 3
- typedef UINT8 tBTM_BLE_BATCH_SCAN_MODE;
- /* advertising channel map */
- #define BTM_BLE_ADV_CHNL_37 (0x01 << 0)
- #define BTM_BLE_ADV_CHNL_38 (0x01 << 1)
- #define BTM_BLE_ADV_CHNL_39 (0x01 << 2)
- typedef UINT8 tBTM_BLE_ADV_CHNL_MAP;
- /*d efault advertising channel map */
- #ifndef BTM_BLE_DEFAULT_ADV_CHNL_MAP
- #define BTM_BLE_DEFAULT_ADV_CHNL_MAP (BTM_BLE_ADV_CHNL_37| BTM_BLE_ADV_CHNL_38| BTM_BLE_ADV_CHNL_39)
- #endif
- /* advertising filter policy */
- #define AP_SCAN_CONN_ALL 0x00 /* default */
- #define AP_SCAN_WL_CONN_ALL 0x01
- #define AP_SCAN_ALL_CONN_WL 0x02
- #define AP_SCAN_CONN_WL 0x03
- #define AP_SCAN_CONN_POLICY_MAX 0x04
- typedef UINT8 tBTM_BLE_AFP;
- /* default advertising filter policy */
- #ifndef BTM_BLE_DEFAULT_AFP
- #define BTM_BLE_DEFAULT_AFP AP_SCAN_CONN_ALL
- #endif
- /* scanning filter policy */
- #define SP_ADV_ALL 0x00 /* 0: accept adv packet from all, directed adv pkt not directed */
- /* to local device is ignored */
- #define SP_ADV_WL 0x01 /* 1: accept adv packet from device in white list, directed adv */
- /* packet not directed to local device is ignored */
- #define SP_ADV_ALL_RPA_DIR_ADV 0x02 /* 2: accept adv packet from all, directed adv pkt */
- /* not directed to me is ignored except direct adv with RPA */
- #define SP_ADV_WL_RPA_DIR_ADV 0x03 /* 3: accept adv packet from device in white list, directed */
- /* adv pkt not directed to me is ignored except direct adv */
- /* with RPA */
- typedef UINT8 tBTM_BLE_SFP;
- #ifndef BTM_BLE_DEFAULT_SFP
- #define BTM_BLE_DEFAULT_SFP SP_ADV_ALL
- #endif
- /* adv parameter boundary values */
- #if BLE_HIGH_DUTY_ADV_INTERVAL
- #define BTM_BLE_ADV_INT_MIN 0x0008 /* 5ms */
- #else
- #define BTM_BLE_ADV_INT_MIN 0x0020 /* 20ms */
- #endif
- #define BTM_BLE_ADV_INT_MAX 0x4000 /* 10240ms */
- /* Full scan boundary values */
- #define BTM_BLE_ADV_SCAN_FULL_MIN 0x00
- #define BTM_BLE_ADV_SCAN_FULL_MAX 0x64
- /* Partial scan boundary values */
- #define BTM_BLE_ADV_SCAN_TRUNC_MIN BTM_BLE_ADV_SCAN_FULL_MIN
- #define BTM_BLE_ADV_SCAN_TRUNC_MAX BTM_BLE_ADV_SCAN_FULL_MAX
- /* Threshold values */
- #define BTM_BLE_ADV_SCAN_THR_MIN BTM_BLE_ADV_SCAN_FULL_MIN
- #define BTM_BLE_ADV_SCAN_THR_MAX BTM_BLE_ADV_SCAN_FULL_MAX
- /* connection parameter boundary values */
- #define BTM_BLE_SCAN_INT_MIN 0x0004
- #define BTM_BLE_SCAN_INT_MAX 0x4000
- #define BTM_BLE_SCAN_WIN_MIN 0x0004
- #define BTM_BLE_SCAN_WIN_MAX 0x4000
- #define BTM_BLE_EXT_SCAN_INT_MAX 0x00FFFFFF
- #define BTM_BLE_EXT_SCAN_WIN_MAX 0xFFFF
- #define BTM_BLE_CONN_INT_MIN 0x0006
- #define BTM_BLE_CONN_INT_MAX 0x0C80
- #define BTM_BLE_CONN_LATENCY_MAX 499
- #define BTM_BLE_CONN_SUP_TOUT_MIN 0x000A
- #define BTM_BLE_CONN_SUP_TOUT_MAX 0x0C80
- #define BTM_BLE_CONN_PARAM_UNDEF 0xffff /* use this value when a specific value not to be overwritten */
- #define BTM_BLE_SCAN_PARAM_UNDEF 0xffffffff
- /* default connection parameters if not configured, use GAP recommend value for auto/selective connection */
- /* default scan interval */
- #ifndef BTM_BLE_SCAN_FAST_INT
- #define BTM_BLE_SCAN_FAST_INT 96 /* 30 ~ 60 ms (use 60) = 96 *0.625 */
- #endif
- /* default scan window for background connection, applicable for auto connection or selective conenction */
- #ifndef BTM_BLE_SCAN_FAST_WIN
- #define BTM_BLE_SCAN_FAST_WIN 48 /* 30 ms = 48 *0.625 */
- #endif
- /* default scan paramter used in reduced power cycle (background scanning) */
- #ifndef BTM_BLE_SCAN_SLOW_INT_1
- #define BTM_BLE_SCAN_SLOW_INT_1 2048 /* 1.28 s = 2048 *0.625 */
- #endif
- #ifndef BTM_BLE_SCAN_SLOW_WIN_1
- #define BTM_BLE_SCAN_SLOW_WIN_1 48 /* 30 ms = 48 *0.625 */
- #endif
- /* default scan paramter used in reduced power cycle (background scanning) */
- #ifndef BTM_BLE_SCAN_SLOW_INT_2
- #define BTM_BLE_SCAN_SLOW_INT_2 4096 /* 2.56 s = 4096 *0.625 */
- #endif
- #ifndef BTM_BLE_SCAN_SLOW_WIN_2
- #define BTM_BLE_SCAN_SLOW_WIN_2 36 /* 22.5 ms = 36 *0.625 */
- #endif
- /* default connection interval min */
- #ifndef BTM_BLE_CONN_INT_MIN_DEF
- #define BTM_BLE_CONN_INT_MIN_DEF 10 /* recommended min: 12.5 ms = 10 * 1.25 */
- #endif
- /* default connection interval max */
- #ifndef BTM_BLE_CONN_INT_MAX_DEF
- #if CONFIG_IDF_TARGET_ESP32
- #define BTM_BLE_CONN_INT_MAX_DEF 12 /* recommended max: 15 ms = 12 * 1.25 */
- #else
- #define BTM_BLE_CONN_INT_MAX_DEF (((MAX_ACL_CONNECTIONS + 1) * 4) > 12 ? ((MAX_ACL_CONNECTIONS + 1) * 4) : 12) /* recommended max: BTM_BLE_CONN_INT_MAX_DEF * 1.25 ms*/
- #endif
- #endif
- /* default slave latency */
- #ifndef BTM_BLE_CONN_SLAVE_LATENCY_DEF
- #define BTM_BLE_CONN_SLAVE_LATENCY_DEF 0 /* 0 */
- #endif
- /* default supervision timeout */
- #ifndef BTM_BLE_CONN_TIMEOUT_DEF
- #define BTM_BLE_CONN_TIMEOUT_DEF 600
- #endif
- /* minimum acceptable connection interval */
- #ifndef BTM_BLE_CONN_INT_MIN_LIMIT
- #define BTM_BLE_CONN_INT_MIN_LIMIT 0x0009
- #endif
- #define BTM_BLE_DIR_CONN_FALLBACK_UNDIR 1
- #define BTM_BLE_DIR_CONN_FALLBACK_NO_ADV 2
- #ifndef BTM_BLE_DIR_CONN_FALLBACK
- #define BTM_BLE_DIR_CONN_FALLBACK BTM_BLE_DIR_CONN_FALLBACK_UNDIR
- #endif
- #define BTM_CMAC_TLEN_SIZE 8 /* 64 bits */
- #define BTM_BLE_AUTH_SIGN_LEN 12 /* BLE data signature length 8 Bytes + 4 bytes counter*/
- typedef UINT8 BLE_SIGNATURE[BTM_BLE_AUTH_SIGN_LEN]; /* Device address */
- #ifndef BTM_BLE_HOST_SUPPORT
- #define BTM_BLE_HOST_SUPPORT 0x01
- #endif
- #ifndef BTM_BLE_SIMULTANEOUS_HOST
- #define BTM_BLE_SIMULTANEOUS_HOST 0x01
- #endif
- /* Appearance Values Reported with BTM_BLE_AD_TYPE_APPEARANCE */
- #define BTM_BLE_APPEARANCE_UNKNOWN 0x0000
- #define BTM_BLE_APPEARANCE_GENERIC_PHONE 0x0040
- #define BTM_BLE_APPEARANCE_GENERIC_COMPUTER 0x0080
- #define BTM_BLE_APPEARANCE_GENERIC_WATCH 0x00C0
- #define BTM_BLE_APPEARANCE_SPORTS_WATCH 0x00C1
- #define BTM_BLE_APPEARANCE_GENERIC_CLOCK 0x0100
- #define BTM_BLE_APPEARANCE_GENERIC_DISPLAY 0x0140
- #define BTM_BLE_APPEARANCE_GENERIC_REMOTE 0x0180
- #define BTM_BLE_APPEARANCE_GENERIC_EYEGLASSES 0x01C0
- #define BTM_BLE_APPEARANCE_GENERIC_TAG 0x0200
- #define BTM_BLE_APPEARANCE_GENERIC_KEYRING 0x0240
- #define BTM_BLE_APPEARANCE_GENERIC_MEDIA_PLAYER 0x0280
- #define BTM_BLE_APPEARANCE_GENERIC_BARCODE_SCANNER 0x02C0
- #define BTM_BLE_APPEARANCE_GENERIC_THERMOMETER 0x0300
- #define BTM_BLE_APPEARANCE_THERMOMETER_EAR 0x0301
- #define BTM_BLE_APPEARANCE_GENERIC_HEART_RATE 0x0340
- #define BTM_BLE_APPEARANCE_HEART_RATE_BELT 0x0341
- #define BTM_BLE_APPEARANCE_GENERIC_BLOOD_PRESSURE 0x0380
- #define BTM_BLE_APPEARANCE_BLOOD_PRESSURE_ARM 0x0381
- #define BTM_BLE_APPEARANCE_BLOOD_PRESSURE_WRIST 0x0382
- #define BTM_BLE_APPEARANCE_GENERIC_HID 0x03C0
- #define BTM_BLE_APPEARANCE_HID_KEYBOARD 0x03C1
- #define BTM_BLE_APPEARANCE_HID_MOUSE 0x03C2
- #define BTM_BLE_APPEARANCE_HID_JOYSTICK 0x03C3
- #define BTM_BLE_APPEARANCE_HID_GAMEPAD 0x03C4
- #define BTM_BLE_APPEARANCE_HID_DIGITIZER_TABLET 0x03C5
- #define BTM_BLE_APPEARANCE_HID_CARD_READER 0x03C6
- #define BTM_BLE_APPEARANCE_HID_DIGITAL_PEN 0x03C7
- #define BTM_BLE_APPEARANCE_HID_BARCODE_SCANNER 0x03C8
- #define BTM_BLE_APPEARANCE_GENERIC_GLUCOSE 0x0400
- #define BTM_BLE_APPEARANCE_GENERIC_WALKING 0x0440
- #define BTM_BLE_APPEARANCE_WALKING_IN_SHOE 0x0441
- #define BTM_BLE_APPEARANCE_WALKING_ON_SHOE 0x0442
- #define BTM_BLE_APPEARANCE_WALKING_ON_HIP 0x0443
- #define BTM_BLE_APPEARANCE_GENERIC_CYCLING 0x0480
- #define BTM_BLE_APPEARANCE_CYCLING_COMPUTER 0x0481
- #define BTM_BLE_APPEARANCE_CYCLING_SPEED 0x0482
- #define BTM_BLE_APPEARANCE_CYCLING_CADENCE 0x0483
- #define BTM_BLE_APPEARANCE_CYCLING_POWER 0x0484
- #define BTM_BLE_APPEARANCE_CYCLING_SPEED_CADENCE 0x0485
- #define BTM_BLE_APPEARANCE_GENERIC_PULSE_OXIMETER 0x0C40
- #define BTM_BLE_APPEARANCE_PULSE_OXIMETER_FINGERTIP 0x0C41
- #define BTM_BLE_APPEARANCE_PULSE_OXIMETER_WRIST 0x0C42
- #define BTM_BLE_APPEARANCE_GENERIC_WEIGHT 0x0C80
- #define BTM_BLE_APPEARANCE_GENERIC_PERSONAL_MOBILITY_DEVICE 0x0CC0
- #define BTM_BLE_APPEARANCE_POWERED_WHEELCHAIR 0x0CC1
- #define BTM_BLE_APPEARANCE_MOBILITY_SCOOTER 0x0CC2
- #define BTM_BLE_APPEARANCE_GENERIC_CONTINUOUS_GLUCOSE_MONITOR 0x0D00
- #define BTM_BLE_APPEARANCE_GENERIC_INSULIN_PUMP 0x0D40
- #define BTM_BLE_APPEARANCE_INSULIN_PUMP_DURABLE_PUMP 0x0D41
- #define BTM_BLE_APPEARANCE_INSULIN_PUMP_PATCH_PUMP 0x0D44
- #define BTM_BLE_APPEARANCE_INSULIN_PEN 0x0D48
- #define BTM_BLE_APPEARANCE_GENERIC_MEDICATION_DELIVERY 0x0D80
- #define BTM_BLE_APPEARANCE_GENERIC_OUTDOOR_SPORTS 0x1440
- #define BTM_BLE_APPEARANCE_OUTDOOR_SPORTS_LOCATION 0x1441
- #define BTM_BLE_APPEARANCE_OUTDOOR_SPORTS_LOCATION_AND_NAV 0x1442
- #define BTM_BLE_APPEARANCE_OUTDOOR_SPORTS_LOCATION_POD 0x1443
- #define BTM_BLE_APPEARANCE_OUTDOOR_SPORTS_LOCATION_POD_AND_NAV 0x1444
- /* Structure returned with Rand/Encrypt complete callback */
- typedef struct {
- UINT8 status;
- UINT8 param_len;
- UINT16 opcode;
- UINT8 param_buf[BT_OCTET16_LEN];
- } tBTM_RAND_ENC;
- /* General callback function for notifying an application that a synchronous
- ** BTM function is complete. The pointer contains the address of any returned data.
- */
- typedef void (tBTM_RAND_ENC_CB) (tBTM_RAND_ENC *p1);
- #define BTM_BLE_FILTER_TARGET_SCANNER 0x01
- #define BTM_BLE_FILTER_TARGET_ADVR 0x00
- #define BTM_BLE_POLICY_BLACK_ALL 0x00 /* relevant to both */
- #define BTM_BLE_POLICY_ALLOW_SCAN 0x01 /* relevant to advertiser */
- #define BTM_BLE_POLICY_ALLOW_CONN 0x02 /* relevant to advertiser */
- #define BTM_BLE_POLICY_WHITE_ALL 0x03 /* relevant to both */
- /* ADV data flag bit definition used for BTM_BLE_AD_TYPE_FLAG */
- #define BTM_BLE_LIMIT_DISC_FLAG (0x01 << 0)
- #define BTM_BLE_GEN_DISC_FLAG (0x01 << 1)
- #define BTM_BLE_BREDR_NOT_SPT (0x01 << 2)
- /* 4.1 spec adv flag for simultaneous BR/EDR+LE connection support */
- #define BTM_BLE_DMT_CONTROLLER_SPT (0x01 << 3)
- #define BTM_BLE_DMT_HOST_SPT (0x01 << 4)
- #define BTM_BLE_NON_LIMIT_DISC_FLAG (0x00 ) /* lowest bit unset */
- #define BTM_BLE_ADV_FLAG_MASK (BTM_BLE_LIMIT_DISC_FLAG | BTM_BLE_BREDR_NOT_SPT | BTM_BLE_GEN_DISC_FLAG)
- #define BTM_BLE_LIMIT_DISC_MASK (BTM_BLE_LIMIT_DISC_FLAG )
- #define BTM_BLE_AD_BIT_DEV_NAME (0x00000001 << 0)
- #define BTM_BLE_AD_BIT_FLAGS (0x00000001 << 1)
- #define BTM_BLE_AD_BIT_MANU (0x00000001 << 2)
- #define BTM_BLE_AD_BIT_TX_PWR (0x00000001 << 3)
- #define BTM_BLE_AD_BIT_INT_RANGE (0x00000001 << 5)
- #define BTM_BLE_AD_BIT_SERVICE (0x00000001 << 6)
- #define BTM_BLE_AD_BIT_SERVICE_SOL (0x00000001 << 7)
- #define BTM_BLE_AD_BIT_SERVICE_DATA (0x00000001 << 8)
- #define BTM_BLE_AD_BIT_SIGN_DATA (0x00000001 << 9)
- #define BTM_BLE_AD_BIT_SERVICE_128SOL (0x00000001 << 10)
- #define BTM_BLE_AD_BIT_APPEARANCE (0x00000001 << 11)
- #define BTM_BLE_AD_BIT_PUBLIC_ADDR (0x00000001 << 12)
- #define BTM_BLE_AD_BIT_RANDOM_ADDR (0x00000001 << 13)
- #define BTM_BLE_AD_BIT_SERVICE_32 (0x00000001 << 4)
- #define BTM_BLE_AD_BIT_SERVICE_32SOL (0x00000001 << 14)
- #define BTM_BLE_AD_BIT_PROPRIETARY (0x00000001 << 15)
- #define BTM_BLE_AD_BIT_SERVICE_128 (0x00000001 << 16) /*128-bit Service UUIDs*/
- typedef UINT32 tBTM_BLE_AD_MASK;
- /* relate to ESP_BLE_AD_TYPE_xxx in esp_gap_ble_api.h */
- #define BTM_BLE_AD_TYPE_FLAG HCI_EIR_FLAGS_TYPE /* 0x01 */
- #define BTM_BLE_AD_TYPE_16SRV_PART HCI_EIR_MORE_16BITS_UUID_TYPE /* 0x02 */
- #define BTM_BLE_AD_TYPE_16SRV_CMPL HCI_EIR_COMPLETE_16BITS_UUID_TYPE /* 0x03 */
- #define BTM_BLE_AD_TYPE_32SRV_PART HCI_EIR_MORE_32BITS_UUID_TYPE /* 0x04 */
- #define BTM_BLE_AD_TYPE_32SRV_CMPL HCI_EIR_COMPLETE_32BITS_UUID_TYPE /* 0x05 */
- #define BTM_BLE_AD_TYPE_128SRV_PART HCI_EIR_MORE_128BITS_UUID_TYPE /* 0x06 */
- #define BTM_BLE_AD_TYPE_128SRV_CMPL HCI_EIR_COMPLETE_128BITS_UUID_TYPE /* 0x07 */
- #define BTM_BLE_AD_TYPE_NAME_SHORT HCI_EIR_SHORTENED_LOCAL_NAME_TYPE /* 0x08 */
- #define BTM_BLE_AD_TYPE_NAME_CMPL HCI_EIR_COMPLETE_LOCAL_NAME_TYPE /* 0x09 */
- #define BTM_BLE_AD_TYPE_TX_PWR HCI_EIR_TX_POWER_LEVEL_TYPE /* 0x0A */
- #define BTM_BLE_AD_TYPE_DEV_CLASS 0x0D
- #define BTM_BLE_AD_TYPE_SM_TK 0x10
- #define BTM_BLE_AD_TYPE_SM_OOB_FLAG 0x11
- #define BTM_BLE_AD_TYPE_INT_RANGE 0x12
- #define BTM_BLE_AD_TYPE_SOL_SRV_UUID 0x14
- #define BTM_BLE_AD_TYPE_128SOL_SRV_UUID 0x15
- #define BTM_BLE_AD_TYPE_SERVICE_DATA 0x16
- #define BTM_BLE_AD_TYPE_PUBLIC_TARGET 0x17
- #define BTM_BLE_AD_TYPE_RANDOM_TARGET 0x18
- #define BTM_BLE_AD_TYPE_APPEARANCE 0x19
- #define BTM_BLE_AD_TYPE_ADV_INT 0x1a
- #define BTM_BLE_AD_TYPE_LE_DEV_ADDR 0x1b
- #define BTM_BLE_AD_TYPE_LE_ROLE 0x1c
- #define BTM_BLE_AD_TYPE_SPAIR_C256 0x1d
- #define BTM_BLE_AD_TYPE_SPAIR_R256 0x1e
- #define BTM_BLE_AD_TYPE_32SOL_SRV_UUID 0x1f
- #define BTM_BLE_AD_TYPE_32SERVICE_DATA 0x20
- #define BTM_BLE_AD_TYPE_128SERVICE_DATA 0x21
- #define BTM_BLE_AD_TYPE_LE_SECURE_CONFIRM 0x22
- #define BTM_BLE_AD_TYPE_LE_SECURE_RANDOM 0x23
- #define BTM_BLE_AD_TYPE_URI 0x24
- #define BTM_BLE_AD_TYPE_INDOOR_POSITION 0x25
- #define BTM_BLE_AD_TYPE_TRANS_DISC_DATA 0x26
- #define BTM_BLE_AD_TYPE_LE_SUPPORT_FEATURE 0x27
- #define BTM_BLE_AD_TYPE_CHAN_MAP_UPDATE 0x28
- #define BTM_BLE_AD_TYPE_MANU HCI_EIR_MANUFACTURER_SPECIFIC_TYPE /* 0xff */
- typedef UINT8 tBTM_BLE_AD_TYPE;
- #define BTM_BLE_LONG_ADV_MAX_LEN 249
- /* Security settings used with L2CAP LE COC */
- #define BTM_SEC_LE_LINK_ENCRYPTED 0x01
- #define BTM_SEC_LE_LINK_PAIRED_WITHOUT_MITM 0x02
- #define BTM_SEC_LE_LINK_PAIRED_WITH_MITM 0x04
- /* Min/max Preferred number of payload octets that the local Controller
- should include in a single Link Layer Data Channel PDU. */
- #define BTM_BLE_DATA_SIZE_MAX 0x00fb
- #define BTM_BLE_DATA_SIZE_MIN 0x001b
- /* Preferred maximum number of microseconds that the local Controller
- should use to transmit a single Link Layer Data Channel PDU. */
- #define BTM_BLE_DATA_TX_TIME_MIN 0x0148
- #if (BLE_50_FEATURE_SUPPORT == TRUE)
- #define BTM_BLE_DATA_TX_TIME_MAX 0x04290 // define by spec v5.0
- #else
- #define BTM_BLE_DATA_TX_TIME_MAX 0x0848
- #endif
- /* adv tx power level */
- #define BTM_BLE_ADV_TX_POWER_MIN 0 /* minimum tx power */
- #define BTM_BLE_ADV_TX_POWER_MAX BTM_TX_POWER_LEVEL_MAX /* maximum tx power */
- typedef UINT8 tBTM_BLE_ADV_TX_POWER;
- /* adv tx power in dBm */
- typedef struct {
- UINT8 adv_inst_max; /* max adv instance supported in controller */
- UINT8 rpa_offloading;
- UINT16 tot_scan_results_strg;
- UINT8 max_irk_list_sz;
- UINT8 filter_support;
- UINT8 max_filter;
- UINT8 energy_support;
- BOOLEAN values_read;
- UINT16 version_supported;
- UINT16 total_trackable_advertisers;
- UINT8 extended_scan_support;
- UINT8 debug_logging_supported;
- } tBTM_BLE_VSC_CB;
- /* slave preferred connection interval range */
- typedef struct {
- UINT16 low;
- UINT16 hi;
- } tBTM_BLE_INT_RANGE;
- /* Service tag supported in the device */
- typedef struct {
- UINT8 num_service;
- BOOLEAN list_cmpl;
- UINT16 *p_uuid;
- } tBTM_BLE_SERVICE;
- /* 32 bits Service supported in the device */
- typedef struct {
- UINT8 num_service;
- BOOLEAN list_cmpl;
- UINT32 *p_uuid;
- } tBTM_BLE_32SERVICE;
- /* 128 bits Service supported in the device */
- typedef struct {
- BOOLEAN list_cmpl;
- UINT8 uuid128[MAX_UUID_SIZE];
- } tBTM_BLE_128SERVICE;
- typedef struct {
- UINT8 len;
- UINT8 *p_val;
- } tBTM_BLE_MANU;
- typedef struct {
- tBT_UUID service_uuid;
- UINT8 len;
- UINT8 *p_val;
- } tBTM_BLE_SERVICE_DATA;
- typedef struct {
- UINT8 adv_type;
- UINT8 len;
- UINT8 *p_val; /* number of len byte */
- } tBTM_BLE_PROP_ELEM;
- typedef struct {
- UINT8 num_elem;
- tBTM_BLE_PROP_ELEM *p_elem;
- } tBTM_BLE_PROPRIETARY;
- typedef struct {
- tBTM_BLE_INT_RANGE int_range; /* slave prefered conn interval range */
- tBTM_BLE_MANU *p_manu; /* manufacturer data */
- tBTM_BLE_SERVICE *p_services; /* services */
- tBTM_BLE_128SERVICE *p_services_128b; /* 128 bits service */
- tBTM_BLE_32SERVICE *p_service_32b; /* 32 bits Service UUID */
- tBTM_BLE_SERVICE *p_sol_services; /* 16 bits services Solicitation UUIDs */
- tBTM_BLE_32SERVICE *p_sol_service_32b; /* List of 32 bit Service Solicitation UUIDs */
- tBTM_BLE_128SERVICE *p_sol_service_128b; /* List of 128 bit Service Solicitation UUIDs */
- tBTM_BLE_PROPRIETARY *p_proprietary;
- tBTM_BLE_SERVICE_DATA *p_service_data; /* service data */
- UINT16 appearance;
- UINT8 flag;
- UINT8 tx_power;
- } tBTM_BLE_ADV_DATA;
- #ifndef BTM_BLE_MULTI_ADV_MAX
- #define BTM_BLE_MULTI_ADV_MAX 16 /* controller returned adv_inst_max should be less
- than this number */
- #endif
- #define BTM_BLE_MULTI_ADV_INVALID 0
- #define BTM_BLE_MULTI_ADV_ENB_EVT 1
- #define BTM_BLE_MULTI_ADV_DISABLE_EVT 2
- #define BTM_BLE_MULTI_ADV_PARAM_EVT 3
- #define BTM_BLE_MULTI_ADV_DATA_EVT 4
- typedef UINT8 tBTM_BLE_MULTI_ADV_EVT;
- #define BTM_BLE_MULTI_ADV_DEFAULT_STD 0
- typedef struct {
- UINT16 adv_int_min;
- UINT16 adv_int_max;
- UINT8 adv_type;
- tBTM_BLE_ADV_CHNL_MAP channel_map;
- tBTM_BLE_AFP adv_filter_policy;
- tBTM_BLE_ADV_TX_POWER tx_power;
- } tBTM_BLE_ADV_PARAMS;
- typedef struct {
- UINT8 *p_sub_code; /* dynamic array to store sub code */
- UINT8 *p_inst_id; /* dynamic array to store instance id */
- UINT8 pending_idx;
- UINT8 next_idx;
- } tBTM_BLE_MULTI_ADV_OPQ;
- typedef void (tBTM_BLE_MULTI_ADV_CBACK)(tBTM_BLE_MULTI_ADV_EVT evt, UINT8 inst_id,
- void *p_ref, tBTM_STATUS status);
- typedef struct {
- UINT8 inst_id;
- BOOLEAN in_use;
- UINT8 adv_evt;
- BD_ADDR rpa;
- TIMER_LIST_ENT raddr_timer_ent;
- tBTM_BLE_MULTI_ADV_CBACK *p_cback;
- void *p_ref;
- UINT8 index;
- } tBTM_BLE_MULTI_ADV_INST;
- typedef struct {
- UINT8 inst_index_queue[BTM_BLE_MULTI_ADV_MAX];
- int front;
- int rear;
- } tBTM_BLE_MULTI_ADV_INST_IDX_Q;
- typedef struct {
- tBTM_BLE_MULTI_ADV_INST *p_adv_inst; /* dynamic array to store adv instance */
- tBTM_BLE_MULTI_ADV_OPQ op_q;
- } tBTM_BLE_MULTI_ADV_CB;
- typedef UINT8 tGATT_IF;
- typedef void (tBTM_BLE_SCAN_THRESHOLD_CBACK)(tBTM_BLE_REF_VALUE ref_value);
- typedef void (tBTM_BLE_SCAN_REP_CBACK)(tBTM_BLE_REF_VALUE ref_value, UINT8 report_format,
- UINT8 num_records, UINT16 total_len,
- UINT8 *p_rep_data, UINT8 status);
- typedef void (tBTM_BLE_SCAN_SETUP_CBACK)(UINT8 evt, tBTM_BLE_REF_VALUE ref_value, UINT8 status);
- #ifndef BTM_BLE_BATCH_SCAN_MAX
- #define BTM_BLE_BATCH_SCAN_MAX 5
- #endif
- #ifndef BTM_BLE_BATCH_REP_MAIN_Q_SIZE
- #define BTM_BLE_BATCH_REP_MAIN_Q_SIZE 2
- #endif
- typedef enum {
- BTM_BLE_SCAN_INVALID_STATE = 0,
- BTM_BLE_SCAN_ENABLE_CALLED = 1,
- BTM_BLE_SCAN_ENABLED_STATE = 2,
- BTM_BLE_SCAN_DISABLE_CALLED = 3,
- BTM_BLE_SCAN_DISABLED_STATE = 4
- } tBTM_BLE_BATCH_SCAN_STATE;
- enum {
- BTM_BLE_DISCARD_OLD_ITEMS,
- BTM_BLE_DISCARD_LOWER_RSSI_ITEMS
- };
- typedef UINT8 tBTM_BLE_DISCARD_RULE;
- typedef struct {
- UINT8 sub_code[BTM_BLE_BATCH_SCAN_MAX];
- tBTM_BLE_BATCH_SCAN_STATE cur_state[BTM_BLE_BATCH_SCAN_MAX];
- tBTM_BLE_REF_VALUE ref_value[BTM_BLE_BATCH_SCAN_MAX];
- UINT8 pending_idx;
- UINT8 next_idx;
- } tBTM_BLE_BATCH_SCAN_OPQ;
- typedef struct {
- UINT8 rep_mode[BTM_BLE_BATCH_REP_MAIN_Q_SIZE];
- tBTM_BLE_REF_VALUE ref_value[BTM_BLE_BATCH_REP_MAIN_Q_SIZE];
- UINT8 num_records[BTM_BLE_BATCH_REP_MAIN_Q_SIZE];
- UINT16 data_len[BTM_BLE_BATCH_REP_MAIN_Q_SIZE];
- UINT8 *p_data[BTM_BLE_BATCH_REP_MAIN_Q_SIZE];
- UINT8 pending_idx;
- UINT8 next_idx;
- } tBTM_BLE_BATCH_SCAN_REP_Q;
- typedef struct {
- tBTM_BLE_BATCH_SCAN_STATE cur_state;
- tBTM_BLE_BATCH_SCAN_MODE scan_mode;
- UINT32 scan_interval;
- UINT32 scan_window;
- tBLE_ADDR_TYPE addr_type;
- tBTM_BLE_DISCARD_RULE discard_rule;
- tBTM_BLE_BATCH_SCAN_OPQ op_q;
- tBTM_BLE_BATCH_SCAN_REP_Q main_rep_q;
- tBTM_BLE_SCAN_SETUP_CBACK *p_setup_cback;
- tBTM_BLE_SCAN_THRESHOLD_CBACK *p_thres_cback;
- tBTM_BLE_SCAN_REP_CBACK *p_scan_rep_cback;
- tBTM_BLE_REF_VALUE ref_value;
- } tBTM_BLE_BATCH_SCAN_CB;
- /// Ble scan duplicate type
- enum {
- BTM_BLE_SCAN_DUPLICATE_DISABLE = 0x0, /*!< the Link Layer should generate advertising reports to the host for each packet received */
- BTM_BLE_SCAN_DUPLICATE_ENABLE = 0x1, /*!< the Link Layer should filter out duplicate advertising reports to the Host */
- BTM_BLE_SCAN_DUPLICATE_MAX = 0x2, /*!< 0x02 – 0xFF, Reserved for future use */
- };
- /* filter selection bit index */
- #define BTM_BLE_PF_ADDR_FILTER 0
- #define BTM_BLE_PF_SRVC_DATA 1
- #define BTM_BLE_PF_SRVC_UUID 2
- #define BTM_BLE_PF_SRVC_SOL_UUID 3
- #define BTM_BLE_PF_LOCAL_NAME 4
- #define BTM_BLE_PF_MANU_DATA 5
- #define BTM_BLE_PF_SRVC_DATA_PATTERN 6
- #define BTM_BLE_PF_TYPE_ALL 7 /* when passed in payload filter type all, only clear action is applicable */
- #define BTM_BLE_PF_TYPE_MAX 8
- /* max number of filter spot for different filter type */
- #ifndef BTM_BLE_MAX_UUID_FILTER
- #define BTM_BLE_MAX_UUID_FILTER 8
- #endif
- #ifndef BTM_BLE_MAX_ADDR_FILTER
- #define BTM_BLE_MAX_ADDR_FILTER 8
- #endif
- #ifndef BTM_BLE_PF_STR_COND_MAX
- #define BTM_BLE_PF_STR_COND_MAX 4 /* apply to manu data , or local name */
- #endif
- #ifndef BTM_BLE_PF_STR_LEN_MAX
- #define BTM_BLE_PF_STR_LEN_MAX 29 /* match for first 29 bytes */
- #endif
- typedef UINT8 tBTM_BLE_PF_COND_TYPE;
- #define BTM_BLE_PF_LOGIC_OR 0
- #define BTM_BLE_PF_LOGIC_AND 1
- typedef UINT8 tBTM_BLE_PF_LOGIC_TYPE;
- #define BTM_BLE_PF_ENABLE 1
- #define BTM_BLE_PF_CONFIG 2
- typedef UINT8 tBTM_BLE_PF_ACTION;
- typedef UINT8 tBTM_BLE_PF_FILT_INDEX;
- typedef UINT8 tBTM_BLE_PF_AVBL_SPACE;
- #define BTM_BLE_PF_BRDCAST_ADDR_FILT 1
- #define BTM_BLE_PF_SERV_DATA_CHG_FILT 2
- #define BTM_BLE_PF_SERV_UUID 4
- #define BTM_BLE_PF_SERV_SOLC_UUID 8
- #define BTM_BLE_PF_LOC_NAME_CHECK 16
- #define BTM_BLE_PF_MANUF_NAME_CHECK 32
- #define BTM_BLE_PF_SERV_DATA_CHECK 64
- typedef UINT16 tBTM_BLE_PF_FEAT_SEL;
- #define BTM_BLE_PF_LIST_LOGIC_OR 1
- #define BTM_BLE_PF_LIST_LOGIC_AND 2
- typedef UINT16 tBTM_BLE_PF_LIST_LOGIC_TYPE;
- #define BTM_BLE_PF_FILT_LOGIC_OR 0
- #define BTM_BLE_PF_FILT_LOGIC_AND 1
- typedef UINT16 tBTM_BLE_PF_FILT_LOGIC_TYPE;
- typedef UINT8 tBTM_BLE_PF_RSSI_THRESHOLD;
- typedef UINT8 tBTM_BLE_PF_DELIVERY_MODE;
- typedef UINT16 tBTM_BLE_PF_TIMEOUT;
- typedef UINT8 tBTM_BLE_PF_TIMEOUT_CNT;
- typedef UINT16 tBTM_BLE_PF_ADV_TRACK_ENTRIES;
- typedef struct {
- tBTM_BLE_PF_FEAT_SEL feat_seln;
- tBTM_BLE_PF_LIST_LOGIC_TYPE logic_type;
- tBTM_BLE_PF_FILT_LOGIC_TYPE filt_logic_type;
- tBTM_BLE_PF_RSSI_THRESHOLD rssi_high_thres;
- tBTM_BLE_PF_RSSI_THRESHOLD rssi_low_thres;
- tBTM_BLE_PF_DELIVERY_MODE dely_mode;
- tBTM_BLE_PF_TIMEOUT found_timeout;
- tBTM_BLE_PF_TIMEOUT lost_timeout;
- tBTM_BLE_PF_TIMEOUT_CNT found_timeout_cnt;
- tBTM_BLE_PF_ADV_TRACK_ENTRIES num_of_tracking_entries;
- } tBTM_BLE_PF_FILT_PARAMS;
- enum {
- BTM_BLE_SCAN_COND_ADD,
- BTM_BLE_SCAN_COND_DELETE,
- BTM_BLE_SCAN_COND_CLEAR = 2
- };
- typedef UINT8 tBTM_BLE_SCAN_COND_OP;
- enum {
- BTM_BLE_FILT_ENABLE_DISABLE = 1,
- BTM_BLE_FILT_CFG = 2,
- BTM_BLE_FILT_ADV_PARAM = 3
- };
- typedef UINT8 tBTM_BLE_FILT_CB_EVT;
- /* BLE adv payload filtering config complete callback */
- typedef void (tBTM_BLE_PF_CFG_CBACK)(tBTM_BLE_PF_ACTION action, tBTM_BLE_SCAN_COND_OP cfg_op,
- tBTM_BLE_PF_AVBL_SPACE avbl_space, tBTM_STATUS status,
- tBTM_BLE_REF_VALUE ref_value);
- typedef void (tBTM_BLE_PF_CMPL_CBACK) (tBTM_BLE_PF_CFG_CBACK);
- /* BLE adv payload filtering status setup complete callback */
- typedef void (tBTM_BLE_PF_STATUS_CBACK) (UINT8 action, tBTM_STATUS status,
- tBTM_BLE_REF_VALUE ref_value);
- /* BLE adv payload filtering param setup complete callback */
- typedef void (tBTM_BLE_PF_PARAM_CBACK) (tBTM_BLE_PF_ACTION action_type,
- tBTM_BLE_PF_AVBL_SPACE avbl_space,
- tBTM_BLE_REF_VALUE ref_value, tBTM_STATUS status);
- #if (BLE_50_FEATURE_SUPPORT == TRUE)
- #define MAX_BLE_ADV_INSTANCE 10
- #define MIN_BLE_PERIODIC_ADV_REPORT_LEN 7
- typedef struct {
- UINT8 inst_id;
- BOOLEAN configured;
- BOOLEAN legacy_pdu;
- BOOLEAN directed;
- BOOLEAN scannable;
- BOOLEAN connetable;
- } tBTM_BLE_EXTENDED_INST;
- typedef struct {
- tBTM_BLE_EXTENDED_INST inst[MAX_BLE_ADV_INSTANCE]; /* dynamic array to store adv instance */
- UINT8 scan_duplicate;
- } tBTM_BLE_EXTENDED_CB;
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_CONNECTABLE (1 << 0)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_SCANNABLE (1 << 1)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_DIRECTED (1 << 2)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_HD_DIRECTED (1 << 3)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_LEGACY (1 << 4)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_ANON_ADV (1 << 5)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_INCLUDE_TX_PWR (1 << 6)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_MASK (0x7F)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_LEGACY_IND (ESP_BLE_GAP_SET_EXT_ADV_PROP_LEGACY |\
- ESP_BLE_GAP_SET_EXT_ADV_PROP_CONNECTABLE |\
- ESP_BLE_GAP_SET_EXT_ADV_PROP_SCANNABLE)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_LEGACY_LD_DIR (ESP_BLE_GAP_SET_EXT_ADV_PROP_LEGACY |\
- ESP_BLE_GAP_SET_EXT_ADV_PROP_CONNECTABLE |\
- ESP_BLE_GAP_SET_EXT_ADV_PROP_DIRECTED)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_LEGACY_HD_DIR (ESP_BLE_GAP_SET_EXT_ADV_PROP_LEGACY |\
- ESP_BLE_GAP_SET_EXT_ADV_PROP_CONNECTABLE |\
- ESP_BLE_GAP_SET_EXT_ADV_PROP_HD_DIRECTED)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_LEGACY_SCAN (ESP_BLE_GAP_SET_EXT_ADV_PROP_LEGACY |\
- ESP_BLE_GAP_SET_EXT_ADV_PROP_SCANNABLE)
- #define BTM_BLE_GAP_SET_EXT_ADV_PROP_LEGACY_NONCONN (ESP_BLE_GAP_SET_EXT_ADV_PROP_LEGACY)
- typedef UINT16 tBTM_BLE_EXT_ADV_TYPE_MASK;
- #define BTM_BLE_GAP_PHY_1M 1
- #define BTM_BLE_GAP_PHY_2M 2
- #define BTM_BLE_GAP_PHY_CODED 3
- typedef UINT8 tBTM_BLE_GAP_PHY;
- #define BTM_BLE_GAP_PHY_NO_TX_PREF_MASK (0x01)
- #define BTM_BLE_GAP_PHY_NO_RX_PREF_MASK (0x02)
- #define BTM_BLE_GAP_PHY_1M_PREF_MASK (0x03)
- #define BTM_BLE_GAP_PHY_2M_PREF_MASK (0x04)
- #define BTM_BLE_GAP_PHY_CODED_PREF_MASK (0x05)
- typedef UINT8 tBTM_BLE_GAP_PHY_MASK;
- #define BTM_BLE_GAP_EXT_SCAN_UNCODE_MASK 0x01
- #define BTM_BLE_GAP_EXT_SCAN_CODE_MASK 0x02
- typedef UINT8 tBTM_BLE_EXT_SCAN_CFG_MASK;
- typedef struct {
- tBTM_BLE_EXT_ADV_TYPE_MASK type;
- UINT32 interval_min;
- UINT32 interval_max;
- tBTM_BLE_ADV_CHNL_MAP channel_map;
- tBLE_ADDR_TYPE own_addr_type;
- tBLE_ADDR_TYPE peer_addr_type;
- BD_ADDR peer_addr;
- tBTM_BLE_AFP filter_policy;
- INT8 tx_power;
- tBTM_BLE_GAP_PHY primary_phy;
- UINT8 max_skip;
- tBTM_BLE_GAP_PHY secondary_phy;
- UINT8 sid;
- BOOLEAN scan_req_notif;
- } tBTM_BLE_GAP_EXT_ADV_PARAMS;
- typedef struct {
- UINT8 instance;
- int duration;
- int max_events;
- } tBTM_BLE_EXT_ADV;
- typedef struct {
- tBLE_SCAN_MODE scan_type;
- UINT16 scan_interval;
- UINT16 scan_window;
- } tBTM_BLE_EXT_SCAN_CFG;
- typedef struct {
- tBLE_ADDR_TYPE own_addr_type;
- UINT8 filter_policy;
- UINT8 scan_duplicate;
- tBTM_BLE_EXT_SCAN_CFG_MASK cfg_mask;
- tBTM_BLE_EXT_SCAN_CFG uncoded_cfg;
- tBTM_BLE_EXT_SCAN_CFG coded_cfg;
- } tBTM_BLE_EXT_SCAN_PARAMS;
- typedef struct {
- UINT16 interval_min;
- UINT16 interval_max;
- UINT8 properties;
- } tBTM_BLE_Periodic_Adv_Params;
- typedef struct {
- UINT8 filter_policy;
- UINT8 sid;
- tBLE_ADDR_TYPE addr_type;
- BD_ADDR addr;
- UINT16 skip;
- UINT16 sync_timeout;
- } tBTM_BLE_Periodic_Sync_Params;
- typedef struct {
- uint8_t status;
- uint16_t conn_idx;
- uint8_t tx_phy;
- uint8_t rx_phy;
- } tBTM_BLE_UPDATE_PHY;
- #endif // #if (BLE_50_FEATURE_SUPPORT == TRUE)
- typedef union {
- UINT16 uuid16_mask;
- UINT32 uuid32_mask;
- UINT8 uuid128_mask[LEN_UUID_128];
- } tBTM_BLE_PF_COND_MASK;
- typedef struct {
- tBLE_BD_ADDR *p_target_addr; /* target address, if NULL, generic UUID filter */
- tBT_UUID uuid; /* UUID condition */
- tBTM_BLE_PF_LOGIC_TYPE cond_logic; /* AND/OR */
- tBTM_BLE_PF_COND_MASK *p_uuid_mask; /* UUID mask */
- } tBTM_BLE_PF_UUID_COND;
- typedef struct {
- UINT8 data_len; /* <= 20 bytes */
- UINT8 *p_data;
- } tBTM_BLE_PF_LOCAL_NAME_COND;
- typedef struct {
- UINT16 company_id; /* company ID */
- UINT8 data_len; /* <= 20 bytes */
- UINT8 *p_pattern;
- UINT16 company_id_mask; /* UUID value mask */
- UINT8 *p_pattern_mask; /* Manufacturer data matching mask,
- same length as data pattern,
- set to all 0xff, match exact data */
- } tBTM_BLE_PF_MANU_COND;
- typedef struct {
- UINT16 uuid; /* service ID */
- UINT8 data_len; /* <= 20 bytes */
- UINT8 *p_pattern;
- UINT8 *p_pattern_mask; /* Service data matching mask, same length as data pattern,
- set to all 0xff, match exact data */
- } tBTM_BLE_PF_SRVC_PATTERN_COND;
- typedef union {
- tBLE_BD_ADDR target_addr;
- tBTM_BLE_PF_LOCAL_NAME_COND local_name; /* local name filtering */
- tBTM_BLE_PF_MANU_COND manu_data; /* manufacturer data filtering */
- tBTM_BLE_PF_UUID_COND srvc_uuid; /* service UUID filtering */
- tBTM_BLE_PF_UUID_COND solicitate_uuid; /* solicited service UUID filtering */
- tBTM_BLE_PF_SRVC_PATTERN_COND srvc_data; /* service data pattern */
- } tBTM_BLE_PF_COND_PARAM;
- typedef struct {
- UINT8 action_ocf[BTM_BLE_PF_TYPE_MAX];
- tBTM_BLE_REF_VALUE ref_value[BTM_BLE_PF_TYPE_MAX];
- tBTM_BLE_PF_PARAM_CBACK *p_filt_param_cback[BTM_BLE_PF_TYPE_MAX];
- tBTM_BLE_PF_CFG_CBACK *p_scan_cfg_cback[BTM_BLE_PF_TYPE_MAX];
- UINT8 cb_evt[BTM_BLE_PF_TYPE_MAX];
- UINT8 pending_idx;
- UINT8 next_idx;
- } tBTM_BLE_ADV_FILTER_ADV_OPQ;
- #define BTM_BLE_MAX_FILTER_COUNTER (BTM_BLE_MAX_ADDR_FILTER + 1) /* per device filter + one generic filter indexed by 0 */
- #ifndef BTM_CS_IRK_LIST_MAX
- #define BTM_CS_IRK_LIST_MAX 0x20
- #endif
- typedef struct {
- BOOLEAN in_use;
- BD_ADDR bd_addr;
- UINT8 pf_counter[BTM_BLE_PF_TYPE_MAX]; /* number of filter indexed by tBTM_BLE_PF_COND_TYPE */
- } tBTM_BLE_PF_COUNT;
- typedef struct {
- BOOLEAN enable;
- UINT8 op_type;
- tBTM_BLE_PF_COUNT *p_addr_filter_count; /* per BDA filter array */
- tBLE_BD_ADDR cur_filter_target;
- tBTM_BLE_PF_STATUS_CBACK *p_filt_stat_cback;
- tBTM_BLE_ADV_FILTER_ADV_OPQ op_q;
- } tBTM_BLE_ADV_FILTER_CB;
- /* Sub codes */
- #define BTM_BLE_META_PF_ENABLE 0x00
- #define BTM_BLE_META_PF_FEAT_SEL 0x01
- #define BTM_BLE_META_PF_ADDR 0x02
- #define BTM_BLE_META_PF_UUID 0x03
- #define BTM_BLE_META_PF_SOL_UUID 0x04
- #define BTM_BLE_META_PF_LOCAL_NAME 0x05
- #define BTM_BLE_META_PF_MANU_DATA 0x06
- #define BTM_BLE_META_PF_SRVC_DATA 0x07
- #define BTM_BLE_META_PF_ALL 0x08
- typedef UINT8 BTM_BLE_ADV_STATE;
- typedef UINT8 BTM_BLE_ADV_INFO_PRESENT;
- typedef UINT8 BTM_BLE_RSSI_VALUE;
- typedef UINT16 BTM_BLE_ADV_INFO_TIMESTAMP;
- /* These are the fields returned in each device adv packet. It
- ** is returned in the results callback if registered.
- */
- typedef struct {
- UINT8 conn_mode;
- tBTM_BLE_AD_MASK ad_mask; /* mask of the valid adv data field */
- UINT8 flag;
- UINT8 tx_power_level;
- UINT8 remote_name_len;
- UINT8 *p_remote_name;
- tBTM_BLE_SERVICE service;
- } tBTM_BLE_INQ_DATA;
- enum {
- BTM_BLE_CONN_NONE,
- BTM_BLE_CONN_AUTO,
- BTM_BLE_CONN_SELECTIVE
- };
- typedef UINT8 tBTM_BLE_CONN_TYPE;
- #define ADV_INFO_PRESENT 0x00
- #define NO_ADV_INFO_PRESENT 0x01
- typedef btgatt_track_adv_info_t tBTM_BLE_TRACK_ADV_DATA;
- typedef void (tBTM_BLE_TRACK_ADV_CBACK)(tBTM_BLE_TRACK_ADV_DATA *p_track_adv_data);
- typedef UINT8 tBTM_BLE_TRACK_ADV_EVT;
- typedef struct {
- tBTM_BLE_REF_VALUE ref_value;
- tBTM_BLE_TRACK_ADV_CBACK *p_track_cback;
- } tBTM_BLE_ADV_TRACK_CB;
- enum {
- BTM_BLE_TRACK_ADV_ADD,
- BTM_BLE_TRACK_ADV_REMOVE
- };
- typedef UINT8 tBTM_BLE_TRACK_ADV_ACTION;
- #define BTM_BLE_MULTI_ADV_INVALID 0
- #define BTM_BLE_BATCH_SCAN_ENABLE_EVT 1
- #define BTM_BLE_BATCH_SCAN_CFG_STRG_EVT 2
- #define BTM_BLE_BATCH_SCAN_READ_REPTS_EVT 3
- #define BTM_BLE_BATCH_SCAN_THR_EVT 4
- #define BTM_BLE_BATCH_SCAN_PARAM_EVT 5
- #define BTM_BLE_BATCH_SCAN_DISABLE_EVT 6
- typedef UINT8 tBTM_BLE_BATCH_SCAN_EVT;
- typedef UINT32 tBTM_BLE_TX_TIME_MS;
- typedef UINT32 tBTM_BLE_RX_TIME_MS;
- typedef UINT32 tBTM_BLE_IDLE_TIME_MS;
- typedef UINT32 tBTM_BLE_ENERGY_USED;
- typedef void (tBTM_BLE_ENERGY_INFO_CBACK)(tBTM_BLE_TX_TIME_MS tx_time, tBTM_BLE_RX_TIME_MS rx_time,
- tBTM_BLE_IDLE_TIME_MS idle_time,
- tBTM_BLE_ENERGY_USED energy_used,
- tBTM_STATUS status);
- typedef struct {
- tBTM_BLE_ENERGY_INFO_CBACK *p_ener_cback;
- } tBTM_BLE_ENERGY_INFO_CB;
- typedef BOOLEAN (tBTM_BLE_SEL_CBACK)(BD_ADDR random_bda, UINT8 *p_remote_name);
- typedef void (tBTM_BLE_CTRL_FEATURES_CBACK)(tBTM_STATUS status);
- /* callback function for SMP signing algorithm, signed data in little endian order with tlen bits long */
- typedef void (tBTM_BLE_SIGN_CBACK)(void *p_ref_data, UINT8 *p_signing_data);
- typedef void (tBTM_BLE_VERIFY_CBACK)(void *p_ref_data, BOOLEAN match);
- /* random address set complete callback */
- typedef void (tBTM_BLE_RANDOM_SET_CBACK) (BD_ADDR random_bda);
- typedef void (tBTM_BLE_SCAN_REQ_CBACK)(BD_ADDR remote_bda, tBLE_ADDR_TYPE addr_type, UINT8 adv_evt);
- typedef void (*tBLE_SCAN_PARAM_SETUP_CBACK)(tGATT_IF client_if, tBTM_STATUS status);
- tBTM_BLE_SCAN_SETUP_CBACK bta_ble_scan_setup_cb;
- typedef void (tBTM_START_ADV_CMPL_CBACK) (UINT8 status);
- typedef void (tBTM_START_STOP_ADV_CMPL_CBACK) (UINT8 status);
- typedef void (tBTM_UPDATE_DUPLICATE_EXCEPTIONAL_LIST_CMPL_CBACK) (tBTM_STATUS status, uint8_t subcode, uint32_t length, uint8_t *device_info);
- #if (BLE_50_FEATURE_SUPPORT == TRUE)
- #define BTM_BLE_5_GAP_READ_PHY_COMPLETE_EVT 1
- #define BTM_BLE_5_GAP_SET_PREFERED_DEFAULT_PHY_COMPLETE_EVT 2
- #define BTM_BLE_5_GAP_SET_PREFERED_PHY_COMPLETE_EVT 3
- #define BTM_BLE_5_GAP_EXT_ADV_SET_RAND_ADDR_COMPLETE_EVT 4
- #define BTM_BLE_5_GAP_EXT_ADV_SET_PARAMS_COMPLETE_EVT 5
- #define BTM_BLE_5_GAP_EXT_ADV_DATA_SET_COMPLETE_EVT 6
- #define BTM_BLE_5_GAP_EXT_SCAN_RSP_DATA_SET_COMPLETE_EVT 7
- #define BTM_BLE_5_GAP_EXT_ADV_START_COMPLETE_EVT 8
- #define BTM_BLE_5_GAP_EXT_ADV_STOP_COMPLETE_EVT 9
- #define BTM_BLE_5_GAP_EXT_ADV_SET_REMOVE_COMPLETE_EVT 10
- #define BTM_BLE_5_GAP_EXT_ADV_SET_CLEAR_COMPLETE_EVT 11
- #define BTM_BLE_5_GAP_PERIODIC_ADV_SET_PARAMS_COMPLETE_EVT 12
- #define BTM_BLE_5_GAP_PERIODIC_ADV_DATA_SET_COMPLETE_EVT 13
- #define BTM_BLE_5_GAP_PERIODIC_ADV_START_COMPLETE_EVT 14
- #define BTM_BLE_5_GAP_PERIODIC_ADV_STOP_COMPLETE_EVT 15
- #define BTM_BLE_5_GAP_PERIODIC_ADV_CREATE_SYNC_COMPLETE_EVT 16
- #define BTM_BLE_5_GAP_PERIODIC_ADV_SYNC_CANCEL_COMPLETE_EVT 17
- #define BTM_BLE_5_GAP_PERIODIC_ADV_SYNC_TERMINATE_COMPLETE_EVT 18
- #define BTM_BLE_5_GAP_PERIODIC_ADV_ADD_DEV_COMPLETE_EVT 19
- #define BTM_BLE_5_GAP_PERIODIC_ADV_REMOVE_DEV_COMPLETE_EVT 20
- #define BTM_BLE_5_GAP_PERIODIC_ADV_CLEAR_DEV_COMPLETE_EVT 21
- #define BTM_BLE_5_GAP_SET_EXT_SCAN_PARAMS_COMPLETE_EVT 22
- #define BTM_BLE_5_GAP_EXT_SCAN_START_COMPLETE_EVT 23
- #define BTM_BLE_5_GAP_EXT_SCAN_STOP_COMPLETE_EVT 24
- #define BTM_BLE_5_GAP_PREFER_EXT_CONN_PARAMS_SET_COMPLETE_EVT 25
- #define BTM_BLE_5_GAP_PHY_UPDATE_COMPLETE_EVT 26
- #define BTM_BLE_5_GAP_EXT_ADV_REPORT_EVT 27
- #define BTM_BLE_5_GAP_SCAN_TIMEOUT_EVT 28
- #define BTM_BLE_5_GAP_ADV_TERMINATED_EVT 29
- #define BTM_BLE_5_GAP_SCAN_REQ_RECEIVED_EVT 30
- #define BTM_BLE_5_GAP_CHANNEL_SELETE_ALGORITHM_EVT 31
- #define BTM_BLE_5_GAP_PERIODIC_ADV_REPORT_EVT 32
- #define BTM_BLE_5_GAP_PERIODIC_ADV_SYNC_LOST_EVT 33
- #define BTM_BLE_5_GAP_PERIODIC_ADV_SYNC_ESTAB_EVT 34
- #if (BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER == TRUE)
- #define BTM_BLE_GAP_PERIODIC_ADV_RECV_ENABLE_COMPLETE_EVT 35
- #define BTM_BLE_GAP_PERIODIC_ADV_SYNC_TRANS_COMPLETE_EVT 36
- #define BTM_BLE_GAP_PERIODIC_ADV_SET_INFO_TRANS_COMPLETE_EVT 37
- #define BTM_BLE_GAP_SET_PAST_PARAMS_COMPLETE_EVT 38
- #define BTM_BLE_GAP_PERIODIC_ADV_SYNC_TRANS_RECV_EVT 39
- #endif // #if (BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER == TRUE)
- #define BTM_BLE_5_GAP_UNKNOWN_EVT 40
- typedef UINT8 tBTM_BLE_5_GAP_EVENT;
- #define BTM_BLE_EXT_ADV_DATA_COMPLETE 0x00
- #define BTM_BLE_EXT_ADV_DATA_INCOMPLETE 0x01
- #define BTM_BLE_EXT_ADV_DATA_TRUNCATED 0x02
- typedef UINT8 tBTM_BLE_EXT_ADV_DATA_STATUS;
- #define BTM_BLE_ADV_DATA_COMPLETE_MASK (0x0000)
- #define BTM_BLE_ADV_DATA_INCOMPLETE_MASK (0x0020)
- #define BTM_BLE_ADV_DATA_TRUNCATED_MASK (0x0040)
- #define BTM_BLE_ADV_DATA_STATUS_MASK (0x0060)
- //#define BTM_BLE_ADV_CONN_MASK (0x0001)
- //#define BTM_BLE_ADV_SCAN_MASK (0x0002)
- //#define BTM_BLE_ADV_DIRECT_MASK (0x0004)
- //#define BTM_BLE_SCAN_RSP_MASK (0x0008)
- #define BTM_BLE_ADV_LEGACY_MASK (0x0010)
- typedef UINT8 tBTM_BLE_ADV_MASK;
- // /* Advertising report */
- // #define BTM_BLE_ADV_REPORT_ADV_IND (0)
- // #define BTM_BLE_ADV_REPORT_DIR_IND (1)
- // #define BTM_BLE_ADV_REPORT_SCAN_IND (2)
- // #define BTM_BLE_ADV_REPORT_NONCONN_IND (3)
- // #define BTM_BLE_ADV_REPORT_SCAN_RSP (4)
- // /* Bluetooth 5.0, Vol 2, Part E, 7.7.65.13 */
- // #define BTM_BLE_LEGACY_ADV_TYPE_IND (0x13)
- // #define BTM_BLE_LEGACY_ADV_TYPE_DIRECT_IND (0x15)
- // #define BTM_BLE_LEGACY_ADV_TYPE_SCAN_IND (0x12)
- // #define BTM_BLE_LEGACY_ADV_TYPE_NONCON_IND (0x10)
- // #define BTM_BLE_LEGACY_ADV_TYPE_SCAN_RSP_ADV_IND (0x1b)
- // #define BTM_BLE_LEGACY_ADV_TYPE_SCAN_RSP_ADV_SCAN_IND (0x1a)
- typedef struct {
- UINT8 status;
- BD_ADDR addr;
- UINT8 tx_phy;
- UINT8 rx_phy;
- } tBTM_BLE_READ_PHY_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_SET_PREF_DEF_PHY_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_SET_PERF_PHY_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_EXT_ADV_SET_RAND_ADDR_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_EXT_ADV_SET_PARAMS_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_EXT_ADV_DATA_SET_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_EXT_ADV_SCAN_RSP_DATA_SET_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_EXT_ADV_START_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_EXT_ADV_STOP_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_SET_PARAMS_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_DATA_SET_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_START_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_STOP_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_SYNC_CREATE_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_SYNC_CANCEL_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_SYNC_TEMINAT_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_ADD_DEV_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_REMOVE_DEV_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PEROID_ADV_CLEAR_DEV_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_SET_EXT_SCAN_PARAMS_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_EXT_SCAN_START_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_EXT_SCAN_STOP_CMPL;
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PREF_EXT_CONN_SET_PARAMS_CMPL;
- typedef struct {
- uint8_t status;
- BD_ADDR addr;
- uint8_t tx_phy;
- uint8_t rx_phy;
- } tBTM_BLE_PHY_UPDATE_CMPL;
- typedef struct {
- // UINT8 props;
- // UINT8 legacy_event_type;
- UINT8 event_type;
- tBLE_ADDR_TYPE addr_type;
- BD_ADDR addr;
- UINT8 primary_phy;
- UINT8 secondry_phy;
- UINT8 sid;
- UINT8 tx_power;
- UINT8 rssi;
- UINT16 per_adv_interval;
- tBLE_ADDR_TYPE dir_addr_type;
- BD_ADDR dir_addr;
- tBTM_BLE_EXT_ADV_DATA_STATUS data_status;
- UINT8 adv_data_len;
- UINT8 *adv_data;
- } tBTM_BLE_EXT_ADV_REPORT;
- typedef struct {
- UINT8 status;
- UINT8 adv_handle;
- UINT16 conn_handle;
- UINT8 completed_event;
- } tBTM_BLE_ADV_TERMINAT;
- typedef struct {
- UINT8 adv_handle;
- tBLE_ADDR_TYPE scan_addr_type;
- BD_ADDR scan_addr;
- } tBTM_BLE_SCAN_REQ_RECEIVED;
- typedef struct {
- UINT16 conn_handle;
- UINT8 channel_sel_alg;
- } tBTM_BLE_CHANNEL_SEL_ALG;
- typedef struct {
- UINT16 sync_handle;
- UINT8 tx_power;
- INT8 rssi;
- tBTM_BLE_EXT_ADV_DATA_STATUS data_status;
- UINT8 data_length;
- UINT8 *data;
- } tBTM_PERIOD_ADV_REPORT;
- typedef struct {
- UINT16 sync_handle;
- } tBTM_BLE_PERIOD_ADV_SYNC_LOST;
- typedef struct {
- UINT8 status;
- UINT16 sync_handle;
- UINT8 sid;
- tBLE_ADDR_TYPE adv_addr_type;
- BD_ADDR adv_addr;
- UINT8 adv_phy;
- UINT16 period_adv_interval;
- UINT8 adv_clk_accuracy;
- } tBTM_BLE_PERIOD_ADV_SYNC_ESTAB;
- typedef struct {
- UINT16 scan_interval;
- UINT16 scan_window;
- UINT16 interval_min;
- UINT16 interval_max;
- UINT16 latency;
- UINT16 supervision_timeout;
- UINT16 min_ce_len;
- UINT16 max_ce_len;
- } tBTM_BLE_CONN_PARAMS;
- #if (BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER == TRUE)
- typedef struct {
- UINT8 status;
- } tBTM_BLE_PERIOD_ADV_RECV_ENABLE_CMPL;
- typedef struct {
- UINT8 status;
- BD_ADDR addr;
- } tBTM_BLE_PERIOD_ADV_SYNC_TRANS_CMPL;
- typedef struct {
- UINT8 status;
- BD_ADDR addr;
- } tBTM_BLE_PERIOD_ADV_SET_INFO_TRANS_CMPL;
- typedef struct {
- UINT8 status;
- BD_ADDR addr;
- } tBTM_BLE_SET_PERIOD_ADV_SYNC_TRANS_PARAMS_CMPL;
- typedef struct {
- UINT8 status;
- BD_ADDR addr;
- UINT16 service_data;
- UINT16 sync_handle;
- UINT8 adv_sid;
- UINT8 adv_addr_type;
- BD_ADDR adv_addr;
- UINT8 adv_phy;
- UINT16 adv_interval;
- UINT8 adv_clk_accuracy;
- } tBTM_BLE_PERIOD_ADV_SYNC_TRANS_RECV;
- #endif //#if (BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER == TRUE)
- typedef union {
- UINT8 status;
- tBTM_BLE_READ_PHY_CMPL read_phy;
- tBTM_BLE_SET_PREF_DEF_PHY_CMPL set_perf_def_phy;
- tBTM_BLE_SET_PERF_PHY_CMPL set_perf_phy;
- tBTM_BLE_EXT_ADV_SET_RAND_ADDR_CMPL set_ext_rand_addr;
- tBTM_BLE_EXT_ADV_SET_PARAMS_CMPL set_params;
- tBTM_BLE_EXT_ADV_DATA_SET_CMPL adv_data_set;
- tBTM_BLE_EXT_ADV_SCAN_RSP_DATA_SET_CMPL scan_rsp_data_set;
- tBTM_BLE_EXT_ADV_START_CMPL adv_start;
- tBTM_BLE_EXT_ADV_STOP_CMPL adv_stop;
- tBTM_BLE_PERIOD_ADV_SET_PARAMS_CMPL per_adv_set_params;
- tBTM_BLE_PERIOD_ADV_DATA_SET_CMPL per_adv_data_set;
- tBTM_BLE_PERIOD_ADV_START_CMPL per_adv_start;
- tBTM_BLE_PERIOD_ADV_STOP_CMPL per_adv_stop;
- tBTM_BLE_PERIOD_ADV_SYNC_CREATE_CMPL per_adv_sync_create;
- tBTM_BLE_PERIOD_ADV_SYNC_CANCEL_CMPL per_adv_sync_cancel;
- tBTM_BLE_PERIOD_ADV_SYNC_TEMINAT_CMPL per_adv_sync_term;
- tBTM_BLE_PERIOD_ADV_ADD_DEV_CMPL per_adv_add_dev;
- tBTM_BLE_PERIOD_ADV_REMOVE_DEV_CMPL per_adv_remove_dev;
- tBTM_BLE_PEROID_ADV_CLEAR_DEV_CMPL per_adv_clear_dev;
- tBTM_BLE_SET_EXT_SCAN_PARAMS_CMPL ext_scan;
- tBTM_BLE_EXT_SCAN_START_CMPL scan_start;
- tBTM_BLE_EXT_SCAN_STOP_CMPL scan_stop;
- tBTM_BLE_PREF_EXT_CONN_SET_PARAMS_CMPL ext_conn_set_params;
- tBTM_BLE_PHY_UPDATE_CMPL phy_update;
- tBTM_BLE_EXT_ADV_REPORT ext_adv_report;
- tBTM_BLE_ADV_TERMINAT adv_term;
- tBTM_BLE_SCAN_REQ_RECEIVED scan_req;
- tBTM_BLE_CHANNEL_SEL_ALG channel_sel;
- tBTM_PERIOD_ADV_REPORT period_adv_report;
- tBTM_BLE_PERIOD_ADV_SYNC_LOST sync_lost;
- tBTM_BLE_PERIOD_ADV_SYNC_ESTAB sync_estab;
- #if (BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER == TRUE)
- tBTM_BLE_PERIOD_ADV_RECV_ENABLE_CMPL per_adv_recv_enable;
- tBTM_BLE_PERIOD_ADV_SYNC_TRANS_CMPL per_adv_sync_trans;
- tBTM_BLE_PERIOD_ADV_SET_INFO_TRANS_CMPL per_adv_set_info_trans;
- tBTM_BLE_SET_PERIOD_ADV_SYNC_TRANS_PARAMS_CMPL set_past_params;
- tBTM_BLE_PERIOD_ADV_SYNC_TRANS_RECV past_recv;
- #endif //#if (BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER == TRUE)
- } tBTM_BLE_5_GAP_CB_PARAMS;
- typedef struct {
- UINT8 phy_mask;
- tBTM_BLE_CONN_PARAMS phy_1m_conn_params;
- tBTM_BLE_CONN_PARAMS phy_2m_conn_params;
- tBTM_BLE_CONN_PARAMS phy_coded_conn_params;
- } tBTM_EXT_CONN_PARAMS;
- typedef void (*tBTM_BLE_5_HCI_CBACK)(tBTM_BLE_5_GAP_EVENT event, tBTM_BLE_5_GAP_CB_PARAMS *params);
- #endif //#if (BLE_50_FEATURE_SUPPORT == TRUE)
- /*****************************************************************************
- ** EXTERNAL FUNCTION DECLARATIONS
- *****************************************************************************/
- /*
- #ifdef __cplusplus
- extern "C" {
- #endif
- */
- /*******************************************************************************
- **
- ** Function BTM_BleRegiseterConnParamCallback
- **
- ** Description register connection parameters update callback func
- **
- ** Parameters: update_conn_param_cb
- **
- ** Returns void
- **
- *******************************************************************************/
- void BTM_BleRegiseterConnParamCallback(tBTM_UPDATE_CONN_PARAM_CBACK *update_conn_param_cb);
- /*******************************************************************************
- **
- ** Function BTM_SecAddBleDevice
- **
- ** Description Add/modify device. This function will be normally called
- ** during host startup to restore all required information
- ** for a LE device stored in the NVRAM.
- **
- ** Parameters: bd_addr - BD address of the peer
- ** bd_name - Name of the peer device. NULL if unknown.
- ** dev_type - Remote device's device type.
- ** addr_type - LE device address type.
- ** auth_mode - auth mode
- **
- ** Returns TRUE if added OK, else FALSE
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_SecAddBleDevice (BD_ADDR bd_addr, BD_NAME bd_name,
- tBT_DEVICE_TYPE dev_type, tBLE_ADDR_TYPE addr_type, UINT32 auth_mode);
- /*******************************************************************************
- **
- ** Function BTM_SecAddBleKey
- **
- ** Description Add/modify LE device information. This function will be
- ** normally called during host startup to restore all required
- ** information stored in the NVRAM.
- **
- ** Parameters: bd_addr - BD address of the peer
- ** p_le_key - LE key values.
- ** key_type - LE SMP key type.
- *
- ** Returns TRUE if added OK, else FALSE
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_SecAddBleKey (BD_ADDR bd_addr, tBTM_LE_KEY_VALUE *p_le_key,
- tBTM_LE_KEY_TYPE key_type);
- /*******************************************************************************
- **
- ** Function BTM_BleSetAdvParams
- **
- ** Description This function is called to set advertising parameters.
- **
- ** Parameters: None.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleSetAdvParams(UINT16 adv_int_min, UINT16 adv_int_max,
- tBLE_BD_ADDR *p_dir_bda, tBTM_BLE_ADV_CHNL_MAP chnl_map);
- /*******************************************************************************
- **
- ** Function BTM_BleSetAdvParamsAll
- **
- ** Description This function is called to set all of the advertising parameters.
- **
- ** Parameters: None.
- **
- ** Returns void
- **
- *******************************************************************************/
- tBTM_STATUS BTM_BleSetAdvParamsAll(UINT16 adv_int_min, UINT16 adv_int_max, UINT8 adv_type,
- tBLE_ADDR_TYPE own_bda_type, tBLE_BD_ADDR *p_dir_bda,
- tBTM_BLE_ADV_CHNL_MAP chnl_map, tBTM_BLE_AFP afp, tBTM_START_ADV_CMPL_CBACK *adv_cb);
- /*******************************************************************************
- **
- ** Function BTM_BleStartAdv
- **
- ** Description This function is called to start adv.
- **
- ** Parameters: None.
- **
- ** Returns status
- **
- *******************************************************************************/
- tBTM_STATUS BTM_BleStartAdv(void);
- /*******************************************************************************
- **
- ** Function BTM_BleWriteAdvData
- **
- ** Description This function is called to write advertising data.
- **
- ** Parameters: None.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleWriteAdvData(tBTM_BLE_AD_MASK data_mask,
- tBTM_BLE_ADV_DATA *p_data);
- /*******************************************************************************
- **
- ** Function BTM_BleWriteLongAdvData
- **
- ** Description This function is called to write long advertising data.
- **
- ** Parameters: adv_data: long advertising data
- ** adv_data_len: the length of long advertising data
- **
- ** Returns void
- **
- *******************************************************************************/
- tBTM_STATUS BTM_BleWriteLongAdvData(uint8_t *adv_data, uint8_t adv_data_len);
- /*******************************************************************************
- **
- ** Function BTM_BleWriteAdvDataRaw
- **
- ** Description This function is called to write raw advertising data.
- **
- ** Parameters: p_raw_adv : point to raw advertising data
- ** raw_adv_len : raw advertising data
- **
- ** Returns BTM_SUCCESS means success.
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleWriteAdvDataRaw(UINT8 *p_raw_adv, UINT32 raw_adv_len);
- tBTM_STATUS BTM_BleSetRandAddress(BD_ADDR rand_addr);
- void BTM_BleClearRandAddress(void);
- /*******************************************************************************
- **
- ** Function BTM_BleSetAdvParams
- **
- ** Description This function is called to set advertising parameters.
- **
- ** Parameters adv_int_min: minimum advertising interval
- ** adv_int_max: maximum advertising interval
- ** p_dir_bda: connectable direct initiator's LE device address
- ** chnl_map: advertising channel map.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleReadAdvParams (UINT16 *adv_int_min, UINT16 *adv_int_max,
- tBLE_BD_ADDR *p_dir_bda, tBTM_BLE_ADV_CHNL_MAP *p_chnl_map);
- /*******************************************************************************
- **
- ** Function BTM_BleObtainVendorCapabilities
- **
- ** Description This function is called to obtain vendor capabilities
- **
- ** Parameters p_cmn_vsc_cb - Returns the vendor capabilities
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleObtainVendorCapabilities(tBTM_BLE_VSC_CB *p_cmn_vsc_cb);
- /*******************************************************************************
- **
- ** Function BTM_BleSetScanParams
- **
- ** Description This function is called to set Scan parameters.
- **
- ** Parameters client_if - Client IF value
- ** scan_interval - Scan interval
- ** scan_window - Scan window
- ** scan_type - Scan type
- ** scan_setup_status_cback - Scan setup status callback
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleSetScanParams(tGATT_IF client_if, UINT32 scan_interval,
- UINT32 scan_window, tBLE_SCAN_MODE scan_type,
- tBLE_SCAN_PARAM_SETUP_CBACK scan_setup_status_cback);
- /*******************************************************************************
- **
- ** Function BTM_BleSetScanFilterParams
- **
- ** Description This function is called to set Scan Filter & parameters.
- **
- ** Parameters client_if - Client IF value
- ** scan_interval - Scan interval
- ** scan_window - Scan window
- ** scan_type - Scan type
- ** addr_type_own - owner address type
- ** scan_duplicate_filter - scan duplicate filter
- ** scan_filter_policy - scan filter policy
- ** scan_setup_status_cback - Scan setup status callback
- **
- ** Returns void
- **
- *******************************************************************************/
- tBTM_STATUS BTM_BleSetScanFilterParams(tGATT_IF client_if, UINT32 scan_interval, UINT32 scan_window,
- tBLE_SCAN_MODE scan_mode, UINT8 addr_type_own, UINT8 scan_duplicate_filter, tBTM_BLE_SFP scan_filter_policy,
- tBLE_SCAN_PARAM_SETUP_CBACK scan_setup_status_cback);
- /*******************************************************************************
- **
- ** Function BTM_BleGetVendorCapabilities
- **
- ** Description This function reads local LE features
- **
- ** Parameters p_cmn_vsc_cb : Locala LE capability structure
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleGetVendorCapabilities(tBTM_BLE_VSC_CB *p_cmn_vsc_cb);
- /*******************************************************************************
- **
- ** Function BTM_BleSetStorageConfig
- **
- ** Description This function is called to setup storage configuration and setup callbacks.
- **
- ** Parameters UINT8 batch_scan_full_max -Batch scan full maximum
- UINT8 batch_scan_trunc_max - Batch scan truncated value maximum
- UINT8 batch_scan_notify_threshold - Threshold value
- tBTM_BLE_SCAN_SETUP_CBACK *p_setup_cback - Setup callback
- tBTM_BLE_SCAN_THRESHOLD_CBACK *p_thres_cback -Threshold callback
- void *p_ref - Reference value
- **
- ** Returns tBTM_STATUS
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleSetStorageConfig(UINT8 batch_scan_full_max,
- UINT8 batch_scan_trunc_max,
- UINT8 batch_scan_notify_threshold,
- tBTM_BLE_SCAN_SETUP_CBACK *p_setup_cback,
- tBTM_BLE_SCAN_THRESHOLD_CBACK *p_thres_cback,
- tBTM_BLE_SCAN_REP_CBACK *p_cback,
- tBTM_BLE_REF_VALUE ref_value);
- /*******************************************************************************
- **
- ** Function BTM_BleEnableBatchScan
- **
- ** Description This function is called to enable batch scan
- **
- ** Parameters tBTM_BLE_BATCH_SCAN_MODE scan_mode - Batch scan mode
- UINT32 scan_interval -Scan interval
- UINT32 scan_window - Scan window value
- tBLE_ADDR_TYPE addr_type - Address type
- tBTM_BLE_DISCARD_RULE discard_rule - Data discard rules
- **
- ** Returns tBTM_STATUS
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleEnableBatchScan(tBTM_BLE_BATCH_SCAN_MODE scan_mode,
- UINT32 scan_interval, UINT32 scan_window,
- tBTM_BLE_DISCARD_RULE discard_rule,
- tBLE_ADDR_TYPE addr_type,
- tBTM_BLE_REF_VALUE ref_value);
- /*******************************************************************************
- **
- ** Function BTM_BleDisableBatchScan
- **
- ** Description This function is called to disable batch scanning
- **
- ** Parameters void
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleDisableBatchScan(tBTM_BLE_REF_VALUE ref_value);
- /*******************************************************************************
- **
- ** Function BTM_BleReadScanReports
- **
- ** Description This function is called to read batch scan reports
- **
- ** Parameters tBLE_SCAN_MODE scan_mode - Scan mode report to be read out
- tBTM_BLE_SCAN_REP_CBACK* p_cback - Reports callback
- **
- ** Returns tBTM_STATUS
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleReadScanReports(tBLE_SCAN_MODE scan_mode,
- tBTM_BLE_REF_VALUE ref_value);
- /*******************************************************************************
- **
- ** Function BTM_BleTrackAdvertiser
- **
- ** Description This function is called to read batch scan reports
- **
- ** Parameters p_track_cback - Tracking callback
- ** ref_value - Reference value
- **
- ** Returns tBTM_STATUS
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleTrackAdvertiser(tBTM_BLE_TRACK_ADV_CBACK *p_track_cback,
- tBTM_BLE_REF_VALUE ref_value);
- /*******************************************************************************
- **
- ** Function BTM_BleWriteScanRsp
- **
- ** Description This function is called to write LE scan response.
- **
- ** Parameters: p_scan_rsp: scan response.
- **
- ** Returns status
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleWriteScanRsp(tBTM_BLE_AD_MASK data_mask,
- tBTM_BLE_ADV_DATA *p_data);
- /*******************************************************************************
- **
- ** Function BTM_BleWriteScanRspRaw
- **
- ** Description This function is called to write raw scan response data
- **
- ** Parameters: None.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleWriteScanRspRaw(UINT8 *p_raw_scan_rsp, UINT32 raw_scan_rsp_len);
- /*******************************************************************************
- **
- ** Function BTM_BleObserve
- **
- ** Description This procedure keep the device listening for advertising
- ** events from a broadcast device.
- **
- ** Parameters start: start or stop observe.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleObserve(BOOLEAN start, UINT32 duration,
- tBTM_INQ_RESULTS_CB *p_results_cb, tBTM_CMPL_CB *p_cmpl_cb);
- /*******************************************************************************
- **
- ** Function BTM_BleScan
- **
- ** Description This procedure keep the device listening for advertising
- ** events from a broadcast device.
- **
- ** Parameters start: start or stop scan.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleScan(BOOLEAN start, UINT32 duration,
- tBTM_INQ_RESULTS_CB *p_results_cb, tBTM_CMPL_CB *p_cmpl_cb, tBTM_INQ_DIS_CB *p_discard_cb);
- /*******************************************************************************
- **
- ** Function BTM_GetDeviceIDRoot
- **
- ** Description This function is called to read the local device identity
- ** root.
- **
- ** Returns void
- ** the local device ER is copied into er
- **
- *******************************************************************************/
- //extern
- void BTM_GetDeviceIDRoot (BT_OCTET16 ir);
- /*******************************************************************************
- **
- ** Function BTM_GetDeviceEncRoot
- **
- ** Description This function is called to read the local device encryption
- ** root.
- **
- ** Returns void
- ** the local device ER is copied into er
- **
- *******************************************************************************/
- //extern
- void BTM_GetDeviceEncRoot (BT_OCTET16 er);
- /*******************************************************************************
- **
- ** Function BTM_GetDeviceDHK
- **
- ** Description This function is called to read the local device DHK.
- **
- ** Returns void
- ** the local device DHK is copied into dhk
- **
- *******************************************************************************/
- //extern
- void BTM_GetDeviceDHK (BT_OCTET16 dhk);
- /*******************************************************************************
- **
- ** Function BTM_SecurityGrant
- **
- ** Description This function is called to grant security process.
- **
- ** Parameters bd_addr - peer device bd address.
- ** res - result of the operation BTM_SUCCESS if success.
- ** Otherwise, BTM_REPEATED_ATTEMPTS is too many attempts.
- **
- ** Returns None
- **
- *******************************************************************************/
- //extern
- void BTM_SecurityGrant(BD_ADDR bd_addr, UINT8 res);
- /*******************************************************************************
- **
- ** Function BTM_BlePasskeyReply
- **
- ** Description This function is called after Security Manager submitted
- ** passkey request to the application.
- **
- ** Parameters: bd_addr - Address of the device for which passkey was requested
- ** res - result of the operation SMP_SUCCESS if success
- ** passkey - numeric value in the range of
- ** BTM_MIN_PASSKEY_VAL(0) - BTM_MAX_PASSKEY_VAL(999999(0xF423F)).
- **
- *******************************************************************************/
- //extern
- void BTM_BlePasskeyReply (BD_ADDR bd_addr, UINT8 res, UINT32 passkey);
- /*******************************************************************************
- **
- ** Function BTM_BleSetStaticPasskey
- **
- ** Description This function is called to set static passkey
- **
- **
- ** Parameters: add - set static passkey when add is TRUE
- ** clear static passkey when add is FALSE
- ** passkey - static passkey
- **
- **
- *******************************************************************************/
- void BTM_BleSetStaticPasskey(BOOLEAN add, UINT32 passkey);
- /*******************************************************************************
- **
- ** Function BTM_BleConfirmReply
- **
- ** Description This function is called after Security Manager submitted
- ** numeric comparison request to the application.
- **
- ** Parameters: bd_addr - Address of the device with which numeric
- ** comparison was requested
- ** res - comparison result BTM_SUCCESS if success
- **
- *******************************************************************************/
- //extern
- void BTM_BleConfirmReply (BD_ADDR bd_addr, UINT8 res);
- /*******************************************************************************
- **
- ** Function BTM_LeOobDataReply
- **
- ** Description This function is called to provide the OOB data for
- ** SMP in response to BTM_LE_OOB_REQ_EVT
- **
- ** Parameters: bd_addr - Address of the peer device
- ** res - result of the operation SMP_SUCCESS if success
- ** p_data - simple pairing Randomizer C.
- **
- *******************************************************************************/
- //extern
- void BTM_BleOobDataReply(BD_ADDR bd_addr, UINT8 res, UINT8 len, UINT8 *p_data);
- /*******************************************************************************
- **
- ** Function BTM_BleSecureConnectionOobDataReply
- **
- ** Description This function is called to provide the OOB data for
- ** SMP in response to BTM_LE_SC_OOB_REQ_EVT when secure connection
- **
- ** Parameters: bd_addr - Address of the peer device
- ** p_c - pointer to Confirmation
- ** p_r - pointer to Randomizer
- **
- *******************************************************************************/
- void BTM_BleSecureConnectionOobDataReply(BD_ADDR bd_addr, UINT8 *p_c, UINT8 *p_r);
- /*******************************************************************************
- **
- ** Function BTM_BleSecureConnectionCreateOobData
- **
- ** Description This function is called to create the OOB data for
- ** SMP when secure connection
- **
- *******************************************************************************/
- void BTM_BleSecureConnectionCreateOobData(void);
- /*******************************************************************************
- **
- ** Function BTM_BleDataSignature
- **
- ** Description This function is called to sign the data using AES128 CMAC
- ** algorith.
- **
- ** Parameter bd_addr: target device the data to be signed for.
- ** p_text: singing data
- ** len: length of the signing data
- ** signature: output parameter where data signature is going to
- ** be stored.
- **
- ** Returns TRUE if signing sucessul, otherwise FALSE.
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_BleDataSignature (BD_ADDR bd_addr, UINT8 *p_text, UINT16 len,
- BLE_SIGNATURE signature);
- /*******************************************************************************
- **
- ** Function BTM_BleVerifySignature
- **
- ** Description This function is called to verify the data signature
- **
- ** Parameter bd_addr: target device the data to be signed for.
- ** p_orig: original data before signature.
- ** len: length of the signing data
- ** counter: counter used when doing data signing
- ** p_comp: signature to be compared against.
- ** Returns TRUE if signature verified correctly; otherwise FALSE.
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_BleVerifySignature (BD_ADDR bd_addr, UINT8 *p_orig,
- UINT16 len, UINT32 counter,
- UINT8 *p_comp);
- /*******************************************************************************
- **
- ** Function BTM_ReadConnectionAddr
- **
- ** Description This function is called to set the local device random address
- ** .
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_ReadConnectionAddr (BD_ADDR remote_bda, BD_ADDR local_conn_addr,
- tBLE_ADDR_TYPE *p_addr_type);
- /*******************************************************************************
- **
- ** Function BTM_ReadRemoteConnectionAddr
- **
- ** Description This function is read the remote device address currently used
- ** .
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_ReadRemoteConnectionAddr(BD_ADDR pseudo_addr,
- BD_ADDR conn_addr,
- tBLE_ADDR_TYPE *p_addr_type);
- /*******************************************************************************
- **
- ** Function BTM_BleLoadLocalKeys
- **
- ** Description Local local identity key, encryption root or sign counter.
- **
- ** Parameters: key_type: type of key, can be BTM_BLE_KEY_TYPE_ID, BTM_BLE_KEY_TYPE_ER
- ** or BTM_BLE_KEY_TYPE_COUNTER.
- ** p_key: pointer to the key.
- *
- ** Returns non2.
- **
- *******************************************************************************/
- //extern
- void BTM_BleLoadLocalKeys(UINT8 key_type, tBTM_BLE_LOCAL_KEYS *p_key);
- /*******************************************************************************
- **
- ** Function BTM_BleSetBgConnType
- **
- ** Description This function is called to set BLE background connection
- ** procedure type. It can be auto connection, or selective connection.
- **
- ** Parameters conn_type: it can be auto connection, or selective connection.
- ** p_select_cback: callback function when selective connection procedure
- ** is being used.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_BleSetBgConnType(tBTM_BLE_CONN_TYPE conn_type,
- tBTM_BLE_SEL_CBACK *p_select_cback);
- /*******************************************************************************
- **
- ** Function BTM_BleUpdateBgConnDev
- **
- ** Description This function is called to add or remove a device into/from
- ** background connection procedure. The background connection
- * procedure is decided by the background connection type, it can be
- * auto connection, or selective connection.
- **
- ** Parameters add_remove: TRUE to add; FALSE to remove.
- ** remote_bda: device address to add/remove.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_BleUpdateBgConnDev(BOOLEAN add_remove, BD_ADDR remote_bda);
- /*******************************************************************************
- **
- ** Function BTM_BleClearBgConnDev
- **
- ** Description This function is called to clear the whitelist,
- ** end any pending whitelist connections,
- * and reset the local bg device list.
- **
- ** Parameters void
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleClearBgConnDev(void);
- /********************************************************
- **
- ** Function BTM_BleSetPrefConnParams
- **
- ** Description Set a peripheral's preferred connection parameters. When
- ** any of the value does not want to be updated while others
- ** do, use BTM_BLE_CONN_PARAM_UNDEF for the ones want to
- ** leave untouched.
- **
- ** Parameters: bd_addr - BD address of the peripheral
- ** min_conn_int - minimum preferred connection interval
- ** max_conn_int - maximum preferred connection interval
- ** slave_latency - preferred slave latency
- ** supervision_tout - preferred supervision timeout
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleSetPrefConnParams (BD_ADDR bd_addr,
- UINT16 min_conn_int, UINT16 max_conn_int,
- UINT16 slave_latency, UINT16 supervision_tout);
- /******************************************************************************
- **
- ** Function BTM_BleSetConnScanParams
- **
- ** Description Set scan parameters used in BLE connection request
- **
- ** Parameters: scan_interval - scan interval
- ** scan_window - scan window
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleSetConnScanParams (UINT32 scan_interval, UINT32 scan_window);
- /******************************************************************************
- **
- ** Function BTM_BleReadControllerFeatures
- **
- ** Description Reads BLE specific controller features
- **
- ** Parameters: tBTM_BLE_CTRL_FEATURES_CBACK : Callback to notify when features are read
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleReadControllerFeatures(tBTM_BLE_CTRL_FEATURES_CBACK *p_vsc_cback);
- /*******************************************************************************
- **
- ** Function BTM_CheckAdvData
- **
- ** Description This function is called to get ADV data for a specific type.
- **
- ** Parameters p_adv - pointer of ADV data
- ** type - finding ADV data type
- ** p_length - return the length of ADV data not including type
- **
- ** Returns pointer of ADV data
- **
- *******************************************************************************/
- //extern
- UINT8 *BTM_CheckAdvData( UINT8 *p_adv, UINT8 type, UINT8 *p_length);
- /*******************************************************************************
- **
- ** Function BTM_BleGetCurrentAddress
- **
- ** Description This function is called to get local used BLE address.
- **
- ** Parameters: None.
- **
- ** Returns success or fail
- **
- *******************************************************************************/
- BOOLEAN BTM_BleGetCurrentAddress(BD_ADDR addr, uint8_t *addr_type);
- /*******************************************************************************
- **
- ** Function BTM__BLEReadDiscoverability
- **
- ** Description This function is called to read the current LE discoverability
- ** mode of the device.
- **
- ** Returns BTM_BLE_NON_DISCOVERABLE ,BTM_BLE_LIMITED_DISCOVERABLE or
- ** BTM_BLE_GENRAL_DISCOVERABLE
- **
- *******************************************************************************/
- UINT16 BTM_BleReadDiscoverability(void);
- /*******************************************************************************
- **
- ** Function BTM__BLEReadConnectability
- **
- ** Description This function is called to read the current LE connectibility
- ** mode of the device.
- **
- ** Returns BTM_BLE_NON_CONNECTABLE or BTM_BLE_CONNECTABLE
- **
- *******************************************************************************/
- //extern
- UINT16 BTM_BleReadConnectability (void);
- void BTM_Recovery_Pre_State(void);
- /*******************************************************************************
- **
- ** Function BTM_ReadDevInfo
- **
- ** Description This function is called to read the device/address type
- ** of BD address.
- **
- ** Parameter remote_bda: remote device address
- ** p_dev_type: output parameter to read the device type.
- ** p_addr_type: output parameter to read the address type.
- **
- *******************************************************************************/
- //extern
- void BTM_ReadDevInfo (BD_ADDR remote_bda, tBT_DEVICE_TYPE *p_dev_type,
- tBLE_ADDR_TYPE *p_addr_type);
- /*******************************************************************************
- **
- ** Function BTM_ReadConnectedTransportAddress
- **
- ** Description This function is called to read the paired device/address type of other device paired
- ** corresponding to the BD_address
- **
- ** Parameter remote_bda: remote device address, carry out the transport address
- ** transport: active transport
- **
- ** Return TRUE if an active link is identified; FALSE otherwise
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_ReadConnectedTransportAddress(BD_ADDR remote_bda,
- tBT_TRANSPORT transport);
- /*******************************************************************************
- **
- ** Function BTM_BleBroadcast
- **
- ** Description This function is to start or stop broadcasting.
- **
- ** Parameters start: start or stop broadcasting.
- **
- ** Returns status.
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleBroadcast(BOOLEAN start, tBTM_START_STOP_ADV_CMPL_CBACK *p_stop_adv_cback);
- /*******************************************************************************
- **
- ** Function BTM_BleConfigPrivacy
- **
- ** Description This function is called to enable or disable the privacy in
- ** the local device.
- **
- ** Parameters enable: TRUE to enable it; FALSE to disable it.
- **
- ** Returns BOOLEAN privacy mode set success; otherwise failed.
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_BleConfigPrivacy(BOOLEAN enable, tBTM_SET_LOCAL_PRIVACY_CBACK *set_local_privacy_cabck);
- /*******************************************************************************
- **
- ** Function BTM_BleConfigLocalIcon
- **
- ** Description This function is called to set local icon
- **
- ** Parameters icon: appearance value.
- **
- **
- *******************************************************************************/
- void BTM_BleConfigLocalIcon(uint16_t icon);
- /*******************************************************************************
- **
- ** Function BTM_BleConfigConnParams
- **
- ** Description This function is called to set the connection parameters
- **
- ** Parameters int_min: minimum connection interval
- ** int_max: maximum connection interval
- ** latency: slave latency
- ** timeout: supervision timeout
- **
- *******************************************************************************/
- void BTM_BleConfigConnParams(uint16_t int_min, uint16_t int_max, uint16_t latency, uint16_t timeout);
- /*******************************************************************************
- **
- ** Function BTM_BleLocalPrivacyEnabled
- **
- ** Description Checks if local device supports private address
- **
- ** Returns Return TRUE if local privacy is enabled else FALSE
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_BleLocalPrivacyEnabled(void);
- /*******************************************************************************
- **
- ** Function BTM_BleEnableMixedPrivacyMode
- **
- ** Description This function is called to enabled Mixed mode if privacy 1.2
- ** is applicable in controller.
- **
- ** Parameters mixed_on: mixed mode to be used or not.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleEnableMixedPrivacyMode(BOOLEAN mixed_on);
- /*******************************************************************************
- **
- ** Function BTM_BleMaxMultiAdvInstanceCount
- **
- ** Description Returns max number of multi adv instances supported by controller
- **
- ** Returns Max multi adv instance count
- **
- *******************************************************************************/
- //extern
- UINT8 BTM_BleMaxMultiAdvInstanceCount(void);
- /*******************************************************************************
- **
- ** Function BTM_BleSetConnectableMode
- **
- ** Description This function is called to set BLE connectable mode for a
- ** peripheral device.
- **
- ** Parameters connectable_mode: directed connectable mode, or non-directed.It can
- ** be BTM_BLE_CONNECT_EVT, BTM_BLE_CONNECT_DIR_EVT or
- ** BTM_BLE_CONNECT_LO_DUTY_DIR_EVT
- **
- ** Returns BTM_ILLEGAL_VALUE if controller does not support BLE.
- ** BTM_SUCCESS is status set successfully; otherwise failure.
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleSetConnectableMode(tBTM_BLE_CONN_MODE connectable_mode);
- /*******************************************************************************
- **
- ** Function BTM_BleTurnOnPrivacyOnRemote
- **
- ** Description This function is called to enable or disable the privacy on the
- ** remote device.
- **
- ** Parameters bd_addr: remote device address.
- ** privacy_on: TRUE to enable it; FALSE to disable it.
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- void BTM_BleTurnOnPrivacyOnRemote(BD_ADDR bd_addr,
- BOOLEAN privacy_on);
- /*******************************************************************************
- **
- ** Function BTM_BleUpdateAdvWhitelist
- **
- ** Description Add or remove device from advertising white list
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_BleUpdateAdvWhitelist(BOOLEAN add_remove, BD_ADDR emote_bda, tBLE_ADDR_TYPE addr_type, tBTM_UPDATE_WHITELIST_CBACK *update_wl_cb);
- /*******************************************************************************
- **
- ** Function BTM_BleClearWhitelist
- **
- ** Description Clear all white list
- **
- ** Returns void
- **
- *******************************************************************************/
- void BTM_BleClearWhitelist(tBTM_UPDATE_WHITELIST_CBACK *update_wl_cb);
- /*******************************************************************************
- **
- ** Function BTM_BleUpdateAdvFilterPolicy
- **
- ** Description This function update the filter policy of advertiser.
- **
- ** Parameter adv_policy: advertising filter policy
- **
- ** Return void
- *******************************************************************************/
- //extern
- void BTM_BleUpdateAdvFilterPolicy(tBTM_BLE_AFP adv_policy);
- /*******************************************************************************
- **
- ** Function BTM_BleReceiverTest
- **
- ** Description This function is called to start the LE Receiver test
- **
- ** Parameter rx_freq - Frequency Range
- ** p_cmd_cmpl_cback - Command Complete callback
- **
- *******************************************************************************/
- void BTM_BleReceiverTest(UINT8 rx_freq, tBTM_CMPL_CB *p_cmd_cmpl_cback);
- /*******************************************************************************
- **
- ** Function BTM_BleTransmitterTest
- **
- ** Description This function is called to start the LE Transmitter test
- **
- ** Parameter tx_freq - Frequency Range
- ** test_data_len - Length in bytes of payload data in each packet
- ** packet_payload - Pattern to use in the payload
- ** p_cmd_cmpl_cback - Command Complete callback
- **
- *******************************************************************************/
- void BTM_BleTransmitterTest(UINT8 tx_freq, UINT8 test_data_len,
- UINT8 packet_payload, tBTM_CMPL_CB *p_cmd_cmpl_cback);
- /*******************************************************************************
- **
- ** Function BTM_BleTestEnd
- **
- ** Description This function is called to stop the in-progress TX or RX test
- **
- ** Parameter p_cmd_cmpl_cback - Command complete callback
- **
- *******************************************************************************/
- void BTM_BleTestEnd(tBTM_CMPL_CB *p_cmd_cmpl_cback);
- /*******************************************************************************
- **
- ** Function BTM_UseLeLink
- **
- ** Description This function is to select the underneath physical link to use.
- **
- ** Returns TRUE to use LE, FALSE use BR/EDR.
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_UseLeLink (BD_ADDR bd_addr);
- /*******************************************************************************
- **
- ** Function BTM_BleStackEnable
- **
- ** Description Enable/Disable BLE functionality on stack regarless controller
- ** capability.
- **
- ** Parameters: enable: TRUE to enable, FALSE to disable.
- **
- ** Returns TRUE if added OK, else FALSE
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleStackEnable (BOOLEAN enable);
- /*******************************************************************************
- **
- ** Function BTM_GetLeSecurityState
- **
- ** Description This function is called to get security mode 1 flags and
- ** encryption key size for LE peer.
- **
- ** Returns BOOLEAN TRUE if LE device is found, FALSE otherwise.
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_GetLeSecurityState (BD_ADDR bd_addr,
- UINT8 *p_le_dev_sec_flags,
- UINT8 *p_le_key_size);
- /*******************************************************************************
- **
- ** Function BTM_BleSecurityProcedureIsRunning
- **
- ** Description This function indicates if LE security procedure is
- ** currently running with the peer.
- **
- ** Returns BOOLEAN TRUE if security procedure is running, FALSE otherwise.
- **
- *******************************************************************************/
- //extern
- BOOLEAN BTM_BleSecurityProcedureIsRunning (BD_ADDR bd_addr);
- /*******************************************************************************
- **
- ** Function BTM_BleGetSupportedKeySize
- **
- ** Description This function gets the maximum encryption key size in bytes
- ** the local device can suport.
- ** record.
- **
- ** Returns the key size or 0 if the size can't be retrieved.
- **
- *******************************************************************************/
- //extern
- UINT8 BTM_BleGetSupportedKeySize (BD_ADDR bd_addr);
- /*******************************************************************************/
- /* Multi ADV API */
- /*******************************************************************************
- **
- ** Function BTM_BleEnableAdvInstance
- **
- ** Description This function enable a Multi-ADV instance with the specified
- ** adv parameters
- **
- ** Parameters p_params: pointer to the adv parameter structure, set as default
- ** adv parameter when the instance is enabled.
- ** p_cback: callback function for the adv instance.
- ** p_ref: reference data attach to the adv instance to be enabled.
- **
- ** Returns status
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleEnableAdvInstance (tBTM_BLE_ADV_PARAMS *p_params,
- tBTM_BLE_MULTI_ADV_CBACK *p_cback,
- void *p_ref);
- /*******************************************************************************
- **
- ** Function BTM_BleUpdateAdvInstParam
- **
- ** Description This function update a Multi-ADV instance with the specififed
- ** adv parameters.
- **
- ** Parameters inst_id: adv instance ID
- ** p_params: pointer to the adv parameter structure.
- **
- ** Returns status
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleUpdateAdvInstParam (UINT8 inst_id, tBTM_BLE_ADV_PARAMS *p_params);
- /*******************************************************************************
- **
- ** Function BTM_BleCfgAdvInstData
- **
- ** Description This function configure a Multi-ADV instance with the specified
- ** adv data or scan response data.
- **
- ** Parameters inst_id: adv instance ID
- ** is_scan_rsp: is this scacn response, if no set as adv data.
- ** data_mask: adv data mask.
- ** p_data: pointer to the adv data structure.
- **
- ** Returns status
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleCfgAdvInstData (UINT8 inst_id, BOOLEAN is_scan_rsp,
- tBTM_BLE_AD_MASK data_mask,
- tBTM_BLE_ADV_DATA *p_data);
- /*******************************************************************************
- **
- ** Function BTM_BleDisableAdvInstance
- **
- ** Description This function disable a Multi-ADV instance.
- **
- ** Parameters inst_id: adv instance ID
- **
- ** Returns status
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleDisableAdvInstance (UINT8 inst_id);
- /*******************************************************************************
- **
- ** Function BTM_BleAdvFilterParamSetup
- **
- ** Description This function is called to setup the adv data payload filter
- ** condition.
- **
- ** Parameters p_target: enabble the filter condition on a target device; if NULL
- ** enable the generic scan condition.
- ** enable: enable or disable the filter condition
- **
- ** Returns void
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleAdvFilterParamSetup(int action,
- tBTM_BLE_PF_FILT_INDEX filt_index,
- tBTM_BLE_PF_FILT_PARAMS *p_filt_params,
- tBLE_BD_ADDR *p_target, tBTM_BLE_PF_PARAM_CBACK *p_cmpl_cback,
- tBTM_BLE_REF_VALUE ref_value);
- /*******************************************************************************
- **
- ** Function BTM_BleCfgFilterCondition
- **
- ** Description This function is called to configure the adv data payload filter
- ** condition.
- **
- ** Parameters action: to read/write/clear
- ** cond_type: filter condition type.
- ** p_cond: filter condition paramter
- **
- ** Returns tBTM_STATUS
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleCfgFilterCondition(tBTM_BLE_SCAN_COND_OP action,
- tBTM_BLE_PF_COND_TYPE cond_type,
- tBTM_BLE_PF_FILT_INDEX filt_index,
- tBTM_BLE_PF_COND_PARAM *p_cond,
- tBTM_BLE_PF_CFG_CBACK *p_cmpl_cback,
- tBTM_BLE_REF_VALUE ref_value);
- /*******************************************************************************
- **
- ** Function BTM_BleEnableDisableFilterFeature
- **
- ** Description This function is called to enable or disable the APCF feature
- **
- ** Parameters enable - TRUE - enables the APCF, FALSE - disables the APCF
- ** ref_value - Ref value
- **
- ** Returns tBTM_STATUS
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleEnableDisableFilterFeature(UINT8 enable,
- tBTM_BLE_PF_STATUS_CBACK *p_stat_cback,
- tBTM_BLE_REF_VALUE ref_value);
- /*******************************************************************************
- **
- ** Function BTM_BleGetEnergyInfo
- **
- ** Description This function obtains the energy info
- **
- ** Parameters p_ener_cback - Callback pointer
- **
- ** Returns status
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_BleGetEnergyInfo(tBTM_BLE_ENERGY_INFO_CBACK *p_ener_cback);
- /*******************************************************************************
- **
- ** Function BTM_SetBleDataLength
- **
- ** Description This function is called to set maximum BLE transmission packet size
- **
- ** Returns BTM_SUCCESS if success; otherwise failed.
- **
- *******************************************************************************/
- //extern
- tBTM_STATUS BTM_SetBleDataLength(BD_ADDR bd_addr, UINT16 tx_pdu_length);
- /*******************************************************************************
- **
- ** Function BTM_UpdateBleDuplicateExceptionalList
- **
- ** Description This function is called to update duplicate scan exceptional list.
- **
- ** Parameters: subcode: add, remove or clean duplicate scan exceptional list.
- ** type: device info type
- ** device_info: device information
- ** update_exceptional_list_cmp_cb: complete callback
- **
- ** Returns status
- **
- *******************************************************************************/
- tBTM_STATUS BTM_UpdateBleDuplicateExceptionalList(uint8_t subcode, uint32_t type, BD_ADDR device_info, tBTM_UPDATE_DUPLICATE_EXCEPTIONAL_LIST_CMPL_CBACK update_exceptional_list_cmp_cb);
- /*******************************************************************************
- **
- ** Function BTM_GetCurrentConnParams
- **
- ** Description This function is called to read the current connection parameters
- ** of the device
- **
- ** Returns TRUE or FALSE
- **
- *******************************************************************************/
- BOOLEAN BTM_GetCurrentConnParams(BD_ADDR bda, uint16_t *interval, uint16_t *latency, uint16_t *timeout);
- /*******************************************************************************
- **
- ** Function BTM_Ble_Authorization
- **
- ** Description This function is used to authorize a specified device
- **
- ** Returns TRUE or FALSE
- **
- *******************************************************************************/
- BOOLEAN BTM_Ble_Authorization(BD_ADDR bd_addr, BOOLEAN authorize);
- /*
- #ifdef __cplusplus
- }
- #endif
- */
- #if (BLE_50_FEATURE_SUPPORT == TRUE)
- void BTM_BleGapRegisterCallback(tBTM_BLE_5_HCI_CBACK cb);
- tBTM_STATUS BTM_BleReadPhy(BD_ADDR bd_addr, UINT8 *tx_phy, UINT8 *rx_phy);
- tBTM_STATUS BTM_BleSetPreferDefaultPhy(UINT8 tx_phy_mask, UINT8 rx_phy_mask);
- tBTM_STATUS BTM_BleSetPreferPhy(BD_ADDR bd_addr, UINT8 all_phys, UINT8 tx_phy_mask,
- UINT8 rx_phy_mask, UINT16 phy_options);
- tBTM_STATUS BTM_BleSetExtendedAdvRandaddr(UINT8 instance, BD_ADDR rand_addr);
- tBTM_STATUS BTM_BleSetExtendedAdvParams(UINT8 instance, tBTM_BLE_GAP_EXT_ADV_PARAMS *params);
- tBTM_STATUS BTM_BleConfigExtendedAdvDataRaw(BOOLEAN is_scan_rsp, UINT8 instance, UINT16 len, UINT8 *data);
- tBTM_STATUS BTM_BleStartExtAdv(BOOLEAN enable, UINT8 num, tBTM_BLE_EXT_ADV *ext_adv);
- tBTM_STATUS BTM_BleExtAdvSetRemove(UINT8 instance);
- tBTM_STATUS BTM_BleExtAdvSetClear(void);
- tBTM_STATUS BTM_BlePeriodicAdvSetParams(UINT8 instance, tBTM_BLE_Periodic_Adv_Params *params);
- tBTM_STATUS BTM_BlePeriodicAdvCfgDataRaw(UINT8 instance, UINT16 len, UINT8 *data);
- tBTM_STATUS BTM_BlePeriodicAdvEnable(UINT8 instance, BOOLEAN enable);
- tBTM_STATUS BTM_BlePeriodicAdvCreateSync(tBTM_BLE_Periodic_Sync_Params *params);
- tBTM_STATUS BTM_BlePeriodicAdvSyncCancel(void);
- tBTM_STATUS BTM_BlePeriodicAdvSyncTerm(UINT16 sync_handle);
- tBTM_STATUS BTM_BlePeriodicAdvAddDevToList(tBLE_ADDR_TYPE addr_type, BD_ADDR addr, UINT16 sid);
- tBTM_STATUS BTM_BlePeriodicAdvRemoveDevFromList(tBLE_ADDR_TYPE addr_type, BD_ADDR addr, UINT16 sid);
- tBTM_STATUS BTM_BlePeriodicAdvClearDev(void);
- tBTM_STATUS BTM_BleSetExtendedScanParams(tBTM_BLE_EXT_SCAN_PARAMS *params);
- tBTM_STATUS BTM_BleExtendedScan(BOOLEAN enable, UINT16 duration, UINT16 period);
- void BTM_BleSetPreferExtenedConnParams(BD_ADDR bd_addr, tBTM_EXT_CONN_PARAMS *params);
- #endif // #if (BLE_50_FEATURE_SUPPORT == TRUE)
- #if (BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER == TRUE)
- void BTM_BlePeriodicAdvRecvEnable(UINT16 sync_handle, UINT8 enable);
- void BTM_BlePeriodicAdvSyncTrans(BD_ADDR bd_addr, UINT16 service_data, UINT16 sync_handle);
- void BTM_BlePeriodicAdvSetInfoTrans(BD_ADDR bd_addr, UINT16 service_data, UINT8 adv_handle);
- void BTM_BleSetPeriodicAdvSyncTransParams(BD_ADDR bd_addr, UINT8 mode, UINT16 skip, UINT16 sync_timeout, UINT8 cte_type);
- #endif // #if (BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER == TRUE)
- #endif
|