bt_manager.h 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief bluetooth manager interface
  9. */
  10. #ifndef __BT_MANAGER_H__
  11. #define __BT_MANAGER_H__
  12. #include <stream.h>
  13. #include "btservice_api.h"
  14. #include "bt_manager_ble.h"
  15. #include <msg_manager.h>
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /**
  20. * @defgroup bt_manager_apis Bt Manager APIs
  21. * @ingroup bluetooth_system_apis
  22. * @{
  23. */
  24. #ifdef CONFIG_BT_MAX_BR_CONN
  25. #define BT_MANAGER_MAX_BR_NUM CONFIG_BT_MAX_BR_CONN
  26. #else
  27. #define BT_MANAGER_MAX_BR_NUM 1
  28. #endif
  29. #ifdef CONFIG_BT_A2DP_TRS
  30. #define BT_A2DP_TRS_DEV_MAX 4
  31. #endif
  32. /** bt stream type */
  33. typedef enum {
  34. STREAM_TYPE_A2DP,
  35. STREAM_TYPE_LOCAL,
  36. STREAM_TYPE_SCO,
  37. STREAM_TYPE_SPP,
  38. STREAM_TYPE_MAX_NUM,
  39. } bt_stream_type_e;
  40. /** bt event type */
  41. typedef enum {
  42. /** param null */
  43. BT_CONNECTION_EVENT = 2,
  44. /** param null */
  45. BT_DISCONNECTION_EVENT,
  46. /** param null */
  47. BT_A2DP_CONNECTION_EVENT = 4,
  48. /** param null */
  49. BT_A2DP_DISCONNECTION_EVENT,
  50. /** param null */
  51. BT_A2DP_STREAM_START_EVENT,
  52. /** param null */
  53. BT_A2DP_STREAM_SUSPEND_EVENT,
  54. /** param null */
  55. BT_A2DP_STREAM_DATA_IND_EVENT,
  56. /** param null */
  57. BT_HFP_CONNECTION_EVENT = 10,
  58. /** param null */
  59. BT_HFP_DISCONNECTION_EVENT,
  60. /** param null */
  61. BT_HFP_ESCO_ESTABLISHED_EVENT = 13,
  62. /** param null */
  63. BT_HFP_ESCO_RELEASED_EVENT,
  64. /** param null */
  65. BT_HFP_ACTIVEDEV_CHANGE_EVENT,
  66. /** param:NULL */
  67. BT_HFP_CALL_RING_STATR_EVENT,
  68. /* param null */
  69. BT_HFP_CALL_CCWA_EVENT,
  70. /** param:NULL */
  71. BT_HFP_CALL_RING_STOP_EVENT,
  72. /** param:NULL */
  73. BT_HFP_CALL_OUTGOING,
  74. /** param:NULL */
  75. BT_HFP_CALL_INCOMING,
  76. /** param:NULL */
  77. BT_HFP_CALL_ONGOING,
  78. /** param:NULL */
  79. BT_HFP_CALL_SIRI_MODE,
  80. /** param:NULL */
  81. BT_HFP_CALL_HUNGUP,
  82. /** param:NULL */
  83. BT_HFP_SIRI_START,
  84. /** param:NULL */
  85. BT_HFP_SIRI_STOP,
  86. /** param:NULL */
  87. BT_HFP_CALL_STATE_START,
  88. /** param:NULL */
  89. BT_HFP_CALL_STATE_EXIT,
  90. /** param:struct btsrv_hfp_clcc_info */
  91. BT_HFP_CALL_CLCC_INFO,
  92. /** param null */
  93. BT_AVRCP_CONNECTION_EVENT,
  94. /** param null */
  95. BT_AVRCP_DISCONNECTION_EVENT,
  96. /** param :avrcp_ui.h 6.7 Notification PDUs */
  97. BT_AVRCP_PLAYBACK_STATUS_CHANGED_EVENT,
  98. /** param :null */
  99. BT_AVRCP_TRACK_CHANGED_EVENT,
  100. /** param : struct id3_info avrcp.h */
  101. BT_AVRCP_UPDATE_ID3_INFO_EVENT,
  102. /** param : positon */
  103. BT_AVRCP_UPDATE_PLAYBACK_POS,
  104. /** param null */
  105. BT_HID_CONNECTION_EVENT,
  106. /** param null */
  107. BT_HID_DISCONNECTION_EVENT,
  108. /** param hid_active_id */
  109. BT_HID_ACTIVEDEV_CHANGE_EVENT,
  110. /** param struct btmgr_map_time */
  111. BT_MAP_SET_TIME_EVENT,
  112. /** param null */
  113. BT_RMT_VOL_SYNC_EVENT,
  114. /** param null */
  115. BT_TWS_CONNECTION_EVENT,
  116. /** param null */
  117. BT_TWS_DISCONNECTION_EVENT,
  118. /** param null */
  119. BT_TWS_CHANNEL_MODE_SWITCH,
  120. /** param null */
  121. BT_REQ_RESTART_PLAY,
  122. /** apple ancs incoming call info */
  123. BT_ANCS_INCOMMING_CALL_EVENT,
  124. /** This value will transter to different tws version, must used fixed value */
  125. /** param null */
  126. BT_TWS_START_PLAY = 0xE0,
  127. /** param null */
  128. BT_TWS_STOP_PLAY = 0xE1,
  129. #ifdef CONFIG_BT_A2DP_TRS /** Must place in end */
  130. /** param null */
  131. BT_TRS_A2DP_STREAM_READY_EVENT,
  132. /** param null */
  133. BT_TRS_A2DP_STREAM_START_EVENT,
  134. /** param null */
  135. BT_TRS_A2DP_STREAM_SUSPEND_EVENT,
  136. /** param null */
  137. BT_TRS_INQUIRY_START_EVENT,
  138. /** param null */
  139. BT_TRS_INQUIRY_RESTART_EVENT,
  140. /** param null */
  141. BT_TRS_INQUIRY_STOP_EVENT,
  142. /** param null */
  143. BT_TRS_AVRCP_PLAY_EVENT,
  144. /** param null */
  145. BT_TRS_AVRCP_PAUSE_EVENT,
  146. /** param null */
  147. BT_TRS_AVRCP_FORWARD_EVENT,
  148. /** param null */
  149. BT_TRS_AVRCP_BACKWARD_EVENT,
  150. /* param null */
  151. BT_TRS_A2DP_STREAM_CLOSE_EVENT,
  152. #endif
  153. } bt_event_type_e;
  154. /** bt link state */
  155. enum BT_LINK_STATUS {
  156. BT_STATUS_NONE,
  157. BT_STATUS_WAIT_PAIR,
  158. BT_STATUS_CONNECTED,
  159. BT_STATUS_DISCONNECTED,
  160. BT_STATUS_TWS_WAIT_PAIR,
  161. BT_STATUS_TWS_PAIRED,
  162. BT_STATUS_TWS_UNPAIRED,
  163. BT_STATUS_MASTER_WAIT_PAIR,
  164. };
  165. /** bt play state */
  166. enum BT_PLAY_STATUS {
  167. BT_STATUS_PAUSED = 0x0001,
  168. BT_STATUS_PLAYING = 0x0002,
  169. };
  170. enum BT_HFP_STATUS {
  171. BT_STATUS_HFP_NONE = 0x0000,
  172. BT_STATUS_INCOMING = 0x0001,
  173. BT_STATUS_OUTGOING = 0x0002,
  174. BT_STATUS_ONGOING = 0x0004,
  175. BT_STATUS_MULTIPARTY = 0x0008,
  176. BT_STATUS_SIRI = 0x0010,
  177. BT_STATUS_3WAYIN = 0x0020,
  178. };
  179. /** bt link state */
  180. enum BT_BLE_STATUS {
  181. BT_STATUS_BLE_NONE,
  182. BT_STATUS_BLE_ADV,
  183. BT_STATUS_BLE_CONNECTED,
  184. BT_STATUS_BLE_DISCONNECTED,
  185. };
  186. /** bt manager battery report mode */
  187. enum BT_BATTERY_REPORT_MODE_E {
  188. /** bt manager battery report mode init */
  189. BT_BATTERY_REPORT_INIT = 1,
  190. /** bt manager battery report mode report data */
  191. BT_BATTERY_REPORT_VAL,
  192. };
  193. /** bt application connect type */
  194. enum {
  195. /** no link type */
  196. NONE_CONNECT_TYPE,
  197. /** spp link */
  198. SPP_CONNECT_TYPE,
  199. /** ble link */
  200. BLE_CONNECT_TYPE,
  201. };
  202. #define BT_STATUS_A2DP_ALL (BT_STATUS_NONE \
  203. | BT_STATUS_WAIT_PAIR \
  204. | BT_STATUS_MASTER_WAIT_PAIR \
  205. | BT_STATUS_PAUSED \
  206. | BT_STATUS_PLAYING)
  207. #define BT_STATUS_HFP_ALL (BT_STATUS_INCOMING | BT_STATUS_OUTGOING \
  208. | BT_STATUS_ONGOING | BT_STATUS_MULTIPARTY | BT_STATUS_SIRI | BT_STATUS_3WAYIN)
  209. typedef enum
  210. {
  211. DISABLE_TEST = 0, /* 0: Bluetooth normal run, not enter BQB */
  212. DUT_TEST = 1, /* 1: BR BQB test */
  213. LE_TEST = 2, /* 2: BLE only BQB test */
  214. DUT_LE_TEST =3, /* 3: BR/BLE dual BQB test */
  215. } bt_test_mode_e;
  216. /** bt manager spp call back */
  217. struct btmgr_spp_cb {
  218. void (*connect_failed)(uint8_t channel);
  219. void (*connected)(uint8_t channel, uint8_t *uuid);
  220. void (*disconnected)(uint8_t channel);
  221. void (*receive_data)(uint8_t channel, uint8_t *data, uint32_t len);
  222. };
  223. /** bt manager spp ble strea init param */
  224. struct sppble_stream_init_param {
  225. uint8_t *spp_uuid;
  226. void *gatt_attr;
  227. uint8_t attr_size;
  228. void *tx_chrc_attr;
  229. void *tx_attr;
  230. void *tx_ccc_attr;
  231. void *rx_attr;
  232. void *connect_cb;
  233. #if defined(CONFIG_OTA_PRODUCT_SUPPORT) || defined(CONFIG_OTA_BLE_MASTER_SUPPORT)
  234. void *rxdata_cb;
  235. #endif
  236. int32_t read_timeout;
  237. int32_t write_timeout;
  238. int32_t read_buf_size;
  239. };
  240. /** bt manager pbap vcard context type */
  241. enum BT_PBAP_CARC_CONTEXT_TYPE {
  242. BT_PBAP_VCARD_CT_VERSION = 0, /* vcard version */
  243. BT_PBAP_VCARD_CT_FN = 1, /* Formatted Name */
  244. BT_PBAP_VCARD_CT_N = 2, /* Structured Presentation of Name */
  245. BT_PBAP_VCARD_CT_TEL = 7, /* Telephone Number */
  246. BT_PBAP_VCARD_CT_TZ = 10, /* Time Zone */
  247. BT_PBAP_VCARD_CT_TS = 28, /* Time stamp */
  248. BT_PBAP_VCARD_CT_HDL = 31, /* Not in filter */
  249. };
  250. /** bt manager pbap vcard filter bit */
  251. enum {
  252. BT_PBAP_FILTER_VERSION = (0x1 << BT_PBAP_VCARD_CT_VERSION),
  253. BT_PBAP_FILTER_FN = (0x1 << BT_PBAP_VCARD_CT_FN),
  254. BT_PBAP_FILTER_N = (0x1 << BT_PBAP_VCARD_CT_N),
  255. BT_PBAP_FILTER_TEL = (0x1 << BT_PBAP_VCARD_CT_TEL),
  256. BT_PBAP_FILTER_TZ = (0x1 << BT_PBAP_VCARD_CT_TZ),
  257. BT_PBAP_FILTER_TS = (0x1 << BT_PBAP_VCARD_CT_TS),
  258. };
  259. /** bt manager pbap callback result */
  260. struct mgr_pbap_result {
  261. uint8_t type;
  262. uint16_t len;
  263. uint8_t *data;
  264. };
  265. /** bt manager map callback result */
  266. struct mgr_map_result {
  267. uint8_t type;
  268. uint16_t len;
  269. uint8_t *data;
  270. };
  271. /** bt manager pbap callback functions */
  272. struct btmgr_pbap_cb {
  273. void (*connect_failed)(uint8_t app_id);
  274. void (*connected)(uint8_t app_id);
  275. void (*disconnected)(uint8_t app_id);
  276. void (*max_size)(uint8_t app_id, uint16_t max_size);
  277. void (*result)(uint8_t app_id, struct mgr_pbap_result *result, uint8_t size);
  278. void (*setpath_finish)(uint8_t app_id);
  279. void (*search_result)(uint8_t app_id, struct mgr_pbap_result *result, uint8_t size);
  280. void (*get_vcard_finish)(uint8_t app_id);
  281. void (*end_of_body)(uint8_t app_id);
  282. void (*abort)(uint8_t app_id);
  283. };
  284. /** bt manager map callback functions */
  285. struct btmgr_map_cb {
  286. void (*connect_failed)(uint8_t app_id);
  287. void (*connected)(uint8_t app_id);
  288. void (*disconnected)(uint8_t app_id);
  289. void (*set_path_finished)(uint8_t user_id);
  290. void (*result)(uint8_t app_id, struct mgr_map_result *result, uint8_t size);
  291. };
  292. #define BTMGR_BT_NAME_LEN 32
  293. /** bt manager connect device information */
  294. struct btmgr_connect_dev_info {
  295. bd_address_t addr;
  296. uint16_t is_trs:1;
  297. uint8_t name[BTMGR_BT_NAME_LEN + 1];
  298. };
  299. struct btmgr_map_time{
  300. uint8_t tm_sec;
  301. uint8_t tm_min;
  302. uint8_t tm_hour;
  303. uint8_t tm_mday;
  304. uint8_t tm_mon;
  305. uint8_t tm_wday;
  306. uint16_t tm_year;
  307. uint16_t tm_ms;
  308. };
  309. /**
  310. * @brief bt manager init
  311. *
  312. * This routine init bt manager
  313. *
  314. * @return 0 excute successed , others failed
  315. */
  316. int bt_manager_init(void);
  317. /**
  318. * @brief bt manager deinit
  319. *
  320. * This routine deinit bt manager
  321. *
  322. * @return None
  323. */
  324. void bt_manager_deinit(void);
  325. /**
  326. * @brief bt manager check inited
  327. *
  328. * This routine check bt manager is inited
  329. *
  330. * @return true if inited others false
  331. */
  332. bool bt_manager_is_inited(void);
  333. /**
  334. * @brief bt manager disconnect device
  335. *
  336. * This routine disconnect device
  337. *
  338. * @param mode : BTSRV_DISCONNECT_ALL_MODE/BTSRV_DISCONNECT_PHONE_MODE/BTSRV_DISCONNECT_TWS_MODE
  339. *
  340. * @return None.
  341. */
  342. void bt_manager_disconnect_device(uint8_t mode);
  343. /**
  344. * @brief bt manager get connected device info
  345. *
  346. * This routine get connected device info
  347. *
  348. * @param info For save connected device info.
  349. * @param info_num Get max device info.
  350. *
  351. * @return int Number of connected device.
  352. */
  353. int bt_manager_get_connected_dev_info(struct btmgr_connect_dev_info *info, uint8_t info_num);
  354. /**
  355. * @brief dump bt manager info
  356. *
  357. * This routine dump bt manager info
  358. *
  359. * @return None
  360. */
  361. void bt_manager_dump_info(void);
  362. /**
  363. * @brief bt manager get bt device state
  364. *
  365. * This routine provides to get bt device state.
  366. *
  367. * @return state of bt device state
  368. */
  369. int bt_manager_get_status(void);
  370. /**
  371. * @brief bt manager allow sco connect
  372. *
  373. * This routine provides to allow sco connect or not
  374. *
  375. * @return 0 excute successed , others failed
  376. */
  377. int bt_manager_allow_sco_connect(bool allowed);
  378. /**
  379. * @brief get profile a2dp codec id
  380. *
  381. * This routine provides to get profile a2dp codec id .
  382. *
  383. * @param type Device type
  384. *
  385. * @return codec id of a2dp profile
  386. */
  387. int bt_manager_a2dp_get_codecid(uint8_t type);
  388. /**
  389. * @brief get profile a2dp sample rate
  390. *
  391. * This routine provides to get profile a2dp sample rate.
  392. *
  393. * @param type Device type
  394. *
  395. * @return sample rate of profile a2dp
  396. */
  397. int bt_manager_a2dp_get_sample_rate(uint8_t type);
  398. /**
  399. * @brief get profile a2dp max bitpool
  400. *
  401. * This routine provides to get profile a2dp max bitpool
  402. *
  403. * @param type Device type
  404. *
  405. * @return max bitpool of profile a2dp(Only sbc has max bitpool)
  406. */
  407. int bt_manager_a2dp_get_max_bitpool(uint8_t type);
  408. /**
  409. * @brief check a2dp state
  410. *
  411. * This routine use by app to check a2dp playback
  412. * state,if state is playback ,trigger start event
  413. *
  414. * @return 0 excute successed , others failed
  415. */
  416. int bt_manager_a2dp_check_state(void);
  417. /**
  418. * @brief Send delay report to a2dp active phone
  419. *
  420. * This routine Send delay report to a2dp active phone
  421. *
  422. * @param delay_time delay time (unit: 1/10 milliseconds)
  423. *
  424. * @return 0 excute successed , others failed
  425. */
  426. int bt_manager_a2dp_send_delay_report(uint16_t delay_time);
  427. /**
  428. * @brief disable bt music
  429. *
  430. * This routine Send delay report to a2dp active phone
  431. *
  432. * @param delay_time delay time (unit: 1/10 milliseconds)
  433. *
  434. * @return 0 excute successed , others failed
  435. */
  436. int bt_manager_a2dp_disable(void);
  437. /**
  438. * @brief enable bt music
  439. *
  440. * This routine open a2dp/avrcp profile
  441. *
  442. * @return 0 excute successed , others failed
  443. */
  444. int bt_manager_a2dp_enable(void);
  445. /**
  446. * @brief Control Bluetooth to start playing through AVRCP profile
  447. *
  448. * This routine provides to Control Bluetooth to start playing through AVRCP profile.
  449. *
  450. * @return 0 excute successed , others failed
  451. */
  452. int bt_manager_avrcp_play(void);
  453. /**
  454. * @brief Control Bluetooth to stop playing through AVRCP profile
  455. *
  456. * This routine provides to Control Bluetooth to stop playing through AVRCP profile.
  457. *
  458. * @return 0 excute successed , others failed
  459. */
  460. int bt_manager_avrcp_stopplay(void);
  461. /**
  462. * @brief Control Bluetooth to pause playing through AVRCP profile
  463. *
  464. * This routine provides to Control Bluetooth to pause playing through AVRCP profile.
  465. *
  466. * @return 0 excute successed , others failed
  467. */
  468. int bt_manager_avrcp_pause(void);
  469. /**
  470. * @brief Control Bluetooth to play next through AVRCP profile
  471. *
  472. * This routine provides to Control Bluetooth to play next through AVRCP profile.
  473. *
  474. * @return 0 excute successed , others failed
  475. */
  476. int bt_manager_avrcp_play_next(void);
  477. /**
  478. * @brief Control Bluetooth to play previous through AVRCP profile
  479. *
  480. * This routine provides to Control Bluetooth to play previous through AVRCP profile.
  481. *
  482. * @return 0 excute successed , others failed
  483. */
  484. int bt_manager_avrcp_play_previous(void);
  485. /**
  486. * @brief Control Bluetooth to play fast forward through AVRCP profile
  487. *
  488. * This routine provides to Control Bluetooth to play fast forward through AVRCP profile.
  489. *
  490. * @return 0 excute successed , others failed
  491. */
  492. int bt_manager_avrcp_fast_forward(bool start);
  493. /**
  494. * @brief Control Bluetooth to play fast backward through AVRCP profile
  495. *
  496. * This routine provides to Control Bluetooth to play fast backward through AVRCP profile.
  497. *
  498. * @return 0 excute successed , others failed
  499. */
  500. int bt_manager_avrcp_fast_backward(bool start);
  501. /**
  502. * @brief Control Bluetooth to sync vol to remote through AVRCP profile
  503. *
  504. * This routine provides to Control Bluetooth to sync vol to remote through AVRCP profile.
  505. *
  506. * @param vol volume want to sync
  507. *
  508. * @return 0 excute successed , others failed
  509. */
  510. int bt_manager_avrcp_sync_vol_to_remote(uint32_t vol);
  511. /**
  512. * @brief Control Bluetooth to get current playback track's id3 info through AVRCP profile
  513. *
  514. * This routine provides to Control Bluetooth to get id3 info of cur track.
  515. *
  516. * @return 0 excute successed , others failed
  517. */
  518. int bt_manager_avrcp_get_id3_info(void);
  519. /**
  520. * @brief Control Bluetooth to get current playback position.
  521. *
  522. * This routine provides to Control Bluetooth to get current playback position.
  523. *
  524. * @return 0 excute successed , others failed
  525. */
  526. int bt_manager_avrcp_get_playback_pos(void);
  527. /**
  528. * @brief Avrcp set absolute volume
  529. *
  530. * @param dev_type: device type (BTSRV_DEVICE_PHONE or BTSRV_DEVICE_PLAYER)
  531. * @param volume: absolute volume data (1~2byte, default 1byte, vendor 2byte)
  532. * 1byte volume: Value 0x0 corresponds to 0%. Value 0x7F corresponds to 100%.
  533. * @param len: 1~3byte
  534. *
  535. * @return 0 excute successed , others failed
  536. */
  537. int bt_manager_avrcp_set_absolute_volume(uint8_t dev_type, uint8_t *data, uint8_t len);
  538. /**
  539. * @brief get hfp status
  540. *
  541. * This routine provides to get hfp status .
  542. *
  543. * @return state of hfp status.
  544. */
  545. int bt_manager_hfp_get_status(void);
  546. /**
  547. * @brief Control Bluetooth to dial target phone number through HFP profile
  548. *
  549. * This routine provides to Control Bluetooth to Control Bluetooth to dial target phone number through HFP profile .
  550. *
  551. * @param number number of target phone
  552. *
  553. * @return 0 excute successed , others failed
  554. */
  555. int bt_manager_hfp_dial_number(uint8_t *number);
  556. /**
  557. * @brief Control Bluetooth to dial last phone number through HFP profile
  558. *
  559. * This routine provides to Control Bluetooth to Control Bluetooth to dial last phone number through HFP profile .
  560. *
  561. * @return 0 excute successed , others failed
  562. */
  563. int bt_manager_hfp_dial_last_number(void);
  564. /**
  565. * @brief Control Bluetooth to dial local memory phone number through HFP profile
  566. *
  567. * This routine provides to Control Bluetooth to Control Bluetooth to dial local memory phone number through HFP profile .
  568. *
  569. * @param location index of local memory phone number
  570. *
  571. * @return 0 excute successed , others failed
  572. */
  573. int bt_manager_hfp_dial_memory(int location);
  574. /**
  575. * @brief Control Bluetooth to volume control through HFP profile
  576. *
  577. * This routine provides to Control Bluetooth to Control Bluetooth to volume control through HFP profile .
  578. *
  579. * @param type type of opertation
  580. * @param volume level of volume
  581. *
  582. * @return 0 excute successed , others failed
  583. */
  584. int bt_manager_hfp_volume_control(uint8_t type, uint8_t volume);
  585. /**
  586. * @brief Control Bluetooth to report battery state through HFP profile
  587. *
  588. * This routine provides to Control Bluetooth to Control Bluetooth to report battery state through HFP profile .
  589. *
  590. * @param mode mode of operation, 0 init mode , 1 report mode
  591. * @param bat_val battery level value
  592. *
  593. * @return 0 excute successed , others failed
  594. */
  595. int bt_manager_hfp_battery_report(uint8_t mode, uint8_t bat_val);
  596. /**
  597. * @brief Control Bluetooth to report battery state through HFP profile
  598. *
  599. * This routine provides to Control Bluetooth to Control Bluetooth to report battery state through HFP profile .
  600. *
  601. * @param bat_val battery level value, 1% precision
  602. *
  603. * @return 0 excute successed , others failed
  604. */
  605. int bt_manager_hfp_battery_hprec_report(uint8_t bat_val);
  606. /**
  607. * @brief Control Bluetooth to accept call through HFP profile
  608. *
  609. * This routine provides to Control Bluetooth to Control Bluetooth to accept call through HFP profile .
  610. *
  611. * @return 0 excute successed , others failed
  612. */
  613. int bt_manager_hfp_accept_call(void);
  614. /**
  615. * @brief Control Bluetooth to reject call through HFP profile
  616. *
  617. * This routine provides to Control Bluetooth to Control Bluetooth to reject call through HFP profile .
  618. *
  619. * @return 0 excute successed , others failed
  620. */
  621. int bt_manager_hfp_reject_call(void);
  622. /**
  623. * @brief Control Bluetooth to hangup current call through HFP profile
  624. *
  625. * This routine provides to Control Bluetooth to Control Bluetooth to hangup current call through HFP profile .
  626. *
  627. * @return 0 excute successed , others failed
  628. */
  629. int bt_manager_hfp_hangup_call(void);
  630. /**
  631. * @brief Control Bluetooth to hangup another call through HFP profile
  632. *
  633. * This routine provides to Control Bluetooth to Control Bluetooth to hangup another call through HFP profile .
  634. *
  635. * @return 0 excute successed , others failed
  636. */
  637. int bt_manager_hfp_hangup_another_call(void);
  638. /**
  639. * @brief Control Bluetooth to hold current and answer another call through HFP profile
  640. *
  641. * This routine provides to Control Bluetooth to Control Bluetooth to hold current and answer another call through HFP profile .
  642. *
  643. * @return 0 excute successed , others failed
  644. */
  645. int bt_manager_hfp_holdcur_answer_call(void);
  646. /**
  647. * @brief Control Bluetooth to hangup current and answer another call through HFP profile
  648. *
  649. * This routine provides to Control Bluetooth to Control Bluetooth to hangup current and answer another call through HFP profile .
  650. *
  651. * @return 0 excute successed , others failed
  652. */
  653. int bt_manager_hfp_hangupcur_answer_call(void);
  654. /**
  655. * @brief Control Bluetooth to start siri through HFP profile
  656. *
  657. * This routine provides to Control Bluetooth to Control Bluetooth to start siri through HFP profile .
  658. *
  659. * @return 0 excute successed , others failed
  660. */
  661. int bt_manager_hfp_start_siri(void);
  662. /**
  663. * @brief Control Bluetooth to stop siri through HFP profile
  664. *
  665. * This routine provides to Control Bluetooth to Control Bluetooth to stop siri through HFP profile .
  666. *
  667. * @return 0 excute successed , others failed
  668. */
  669. int bt_manager_hfp_stop_siri(void);
  670. /**
  671. * @brief Control Bluetooth to sycn time from phone through HFP profile
  672. *
  673. * This routine provides to sycn time from phone through HFP profile .
  674. *
  675. * @return 0 excute successed , others failed
  676. */
  677. int bt_manager_hfp_get_time(void);
  678. /**
  679. * @brief send user define at command through HFP profile
  680. *
  681. * This routine provides to send user define at command through HFP profile .
  682. *
  683. * @param command user define at command
  684. * @param send cmd to active_call or inactive call
  685. *
  686. * @return 0 excute successed , others failed
  687. */
  688. int bt_manager_hfp_send_at_command(uint8_t *command,uint8_t active_call);
  689. /**
  690. * @brief sync volume through HFP profile
  691. *
  692. * This routine provides to sync volume through HFP profile .
  693. *
  694. * @param vol volume want to sync
  695. *
  696. * @return 0 excute successed , others failed
  697. */
  698. int bt_manager_hfp_sync_vol_to_remote(uint32_t vol);
  699. /**
  700. * @brief switch sound source through HFP profile
  701. *
  702. * This routine provides to sswitch sound source HFP profile .
  703. * @return 0 excute successed , others failed
  704. */
  705. int bt_manager_hfp_switch_sound_source(void);
  706. /**
  707. * @brief set hfp status
  708. *
  709. * This routine provides to set hfp status .
  710. *
  711. * @param state state of hfp profile
  712. *
  713. * @return 0 excute successed , others failed
  714. */
  715. int bt_manager_hfp_set_status(uint32_t state);
  716. /**
  717. * @brief get profile hfp codec id
  718. *
  719. * This routine provides to get profile hfp codec id .
  720. *
  721. * @return codec id of hfp profile
  722. */
  723. int bt_manager_sco_get_codecid(void);
  724. /**
  725. * @brief get profile hfp sample rate
  726. *
  727. * This routine provides to get profile hfp sample rate.
  728. *
  729. * @return sample rate of profile hfp
  730. */
  731. int bt_manager_sco_get_sample_rate(void);
  732. /**
  733. * @brief get profile hfp call state
  734. *
  735. * This routine provides to get profile hfp call state.
  736. * @param active_call to get active call or inactive call
  737. *
  738. * @return call state of call
  739. */
  740. int bt_manager_hfp_get_call_state(uint8_t active_call,uint8_t *call_state);
  741. /**
  742. * @brief set bt call indicator by app
  743. *
  744. * This routine provides to set bt call indicator by app through HFP profile .
  745. * @param index call status index to set (enum btsrv_hfp_hf_ag_indicators)
  746. * @param value call status
  747. *
  748. * @return 0 excute successed , others failed
  749. */
  750. int bt_manager_hfp_ag_update_indicator(enum btsrv_hfp_hf_ag_indicators index, uint8_t value);
  751. /**
  752. * @brief send call event
  753. *
  754. * This routine provides to send call event through HFP profile .
  755. * @param event call event
  756. * @param len event len
  757. *
  758. * @return 0 excute successed , others failed
  759. */
  760. int bt_manager_hfp_ag_send_event(uint8_t *event, uint16_t len);
  761. /**
  762. * @brief spp reg uuid
  763. *
  764. * This routine provides to spp reg uuid, return channel id.
  765. *
  766. * @param uuid uuid of spp link
  767. * @param c call back of spp link
  768. *
  769. * @return channel of spp connected
  770. */
  771. int bt_manager_spp_reg_uuid(uint8_t *uuid, struct btmgr_spp_cb *c);
  772. /**
  773. * @brief spp send data
  774. *
  775. * This routine provides to send data througth target spp link
  776. *
  777. * @param chl channel of spp link
  778. * @param data pointer of send data
  779. * @param len length of send data
  780. *
  781. * @return > 0 : Send data length; <= 0 : Send failed;
  782. */
  783. int bt_manager_spp_send_data(uint8_t chl, uint8_t *data, uint32_t len);
  784. /**
  785. * @brief spp connect
  786. *
  787. * This routine provides to connect spp channel
  788. *
  789. * @param uuid uuid of spp connect
  790. *
  791. * @return 0 excute successed , others failed
  792. */
  793. uint8_t bt_manager_spp_connect(bd_address_t *bd, uint8_t *uuid, struct btmgr_spp_cb *spp_cb);
  794. uint8_t bt_manager_spp_connect_by_uuid(bd_address_t *bd, uint8_t *uuid);
  795. /**
  796. * @brief spp disconnect
  797. *
  798. * This routine provides to disconnect spp channel
  799. *
  800. * @param chl channel of spp connect
  801. *
  802. * @return 0 excute successed , others failed
  803. */
  804. int bt_manager_spp_disconnect(uint8_t chl);
  805. /**
  806. * @brief PBAP connect
  807. *
  808. * This routine connect PBAP
  809. *
  810. * @param bd device bluetooth address
  811. * @param cb callback function
  812. *
  813. * @return 0 failed, others success with app_id
  814. */
  815. uint8_t btmgr_pbap_connect(bd_address_t *bd, struct btmgr_pbap_cb *cb);
  816. /**
  817. * @brief disconnect pbap
  818. *
  819. * This routine provides to disconnect pbap
  820. *
  821. * @param app_id app_id
  822. *
  823. * @return 0 excute successed , others failed
  824. */
  825. int btmgr_pbap_disconnect(uint8_t app_id);
  826. /**
  827. * @brief pbap get size
  828. *
  829. * This routine provides to get pbap size
  830. *
  831. * @param app_id app_id
  832. * @param path phonebook path
  833. *
  834. * @return 0 excute successed , others failed
  835. */
  836. int btmgr_pbap_get_size(uint8_t app_id, char *path);
  837. /**
  838. * @brief pbap get phonebook
  839. *
  840. * This routine provides to get pbap phonebook
  841. *
  842. * @param app_id app_id
  843. * @param path phonebook path
  844. * @param filter Vcard filter
  845. *
  846. * @return 0 excute successed , others failed
  847. */
  848. int btmgr_pbap_get_pb(uint8_t app_id, char *path, uint32_t filter);
  849. /**
  850. * @brief pbap set phonebook path
  851. *
  852. * This routine provides to set phonebook path
  853. *
  854. * @param app_id app_id
  855. * @param path phonebook path
  856. *
  857. * @return 0 excute successed , others failed
  858. */
  859. int btmgr_pbap_setpath(uint8_t app_id, char *path);
  860. /**
  861. * @brief pbap get vcard
  862. *
  863. * This routine provides to get pbap vcard
  864. *
  865. * @param app_id app_id
  866. * @param name Vcard name
  867. * @param len Vcard name length
  868. * @param filter Vcard filter
  869. *
  870. * @return 0 excute successed , others failed
  871. */
  872. int btmgr_pbap_get_vcard(uint8_t app_id, char *name, uint8_t len, uint32_t filter);
  873. /**
  874. * @brief pbap get vcard continue
  875. *
  876. * This routine provides to get pbap vcard continue
  877. *
  878. * @param app_id app_id
  879. *
  880. * @return 0 excute successed , others failed
  881. */
  882. int btmgr_pbap_get_vcard_continue(uint8_t app_id);
  883. /**
  884. * @brief pbap search vcard by value
  885. *
  886. * This routine provides to list vcard by value
  887. *
  888. * @param app_id app_id
  889. * @param order list order, 0:indexed, 1:alphanumeric, 2:phonetic
  890. * @param attr 0: name, 1: number, 2: sound
  891. * @param value Search value
  892. * @param len Search value length
  893. *
  894. * @return 0 excute successed , others failed
  895. */
  896. int btmgr_pbap_listing(uint8_t app_id, uint8_t order, uint8_t attr, char *value, uint8_t len);
  897. /**
  898. * @brief abort phonebook
  899. *
  900. * This routine provides to abort phonebook
  901. *
  902. * @param app_id app_id
  903. *
  904. * @return 0 excute successed , others failed
  905. */
  906. int btmgr_pbap_abort(uint8_t app_id);
  907. /**
  908. * @brief hid send data on intr channel
  909. *
  910. * This routine provides to send data throug intr channel
  911. *
  912. * @param report_type input or output
  913. * @param data pointer of send data
  914. * @param len length of send data
  915. *
  916. * @return 0 excute successed , others failed
  917. */
  918. #ifdef CONFIG_BT_HID
  919. int bt_manager_hid_send_intr_data(uint16_t hdl, uint8_t report_type, uint8_t *data, uint32_t len);
  920. #else
  921. static inline int bt_manager_hid_send_intr_data(uint16_t hdl, uint8_t report_type, uint8_t *data, uint32_t len)
  922. {
  923. return -1;
  924. }
  925. #endif
  926. /**
  927. * @brief hid send data on ctrl channel
  928. *
  929. * This routine provides to send data throug ctrl channel
  930. *
  931. * @param report_type input or output
  932. * @param data pointer of send data
  933. * @param len length of send data
  934. *
  935. * @return 0 excute successed , others failed
  936. */
  937. #ifdef CONFIG_BT_HID
  938. int bt_manager_hid_send_ctrl_data(uint16_t hdl, uint8_t report_type, uint8_t *data, uint32_t len);
  939. #else
  940. static inline int bt_manager_hid_send_ctrl_data(uint16_t hdl, uint8_t report_type, uint8_t *data, uint32_t len)
  941. {
  942. return -1;
  943. }
  944. #endif
  945. /**
  946. * @brief hid send take photo key msg on intr channel
  947. *
  948. * This routine provides to hid send take photo key msg on intr channel
  949. *
  950. * @return 0 excute successed , others failed
  951. */
  952. #ifdef CONFIG_BT_HID
  953. int bt_manager_hid_take_photo(void);
  954. int bt_manager_hid_send_key(uint8_t report_id);
  955. int bt_manager_hid_reconnect(void);
  956. int bt_manager_hid_disconnect(void);
  957. #else
  958. static inline int bt_manager_hid_take_photo(void)
  959. {
  960. return -1;
  961. }
  962. static inline int bt_manager_hid_send_key(uint8_t report_id)
  963. {
  964. return -1;
  965. }
  966. #endif
  967. /**
  968. * @brief bt manager get connected phone device num
  969. *
  970. * This routine provides to get connected device num.
  971. *
  972. * @return number of connected device
  973. */
  974. int bt_manager_get_connected_dev_num(void);
  975. /**
  976. * @brief bt manager clear connected list
  977. *
  978. * This routine provides to clear connected list
  979. * if have bt device connected , disconnect it before clear connected list.
  980. *
  981. * @return None
  982. */
  983. void bt_manager_clear_list(int mode);
  984. /**
  985. * @brief bt manager set stream type
  986. *
  987. * This routine set stream type to bt manager
  988. *
  989. * @return None
  990. */
  991. void bt_manager_set_stream_type(uint8_t stream_type);
  992. /**
  993. * @brief bt manager set codec
  994. *
  995. * This routine set codec to tws, only need by set a2dp stream
  996. *
  997. * @return None
  998. */
  999. void bt_manager_set_codec(uint8_t codec);
  1000. /**
  1001. * @brief Start br disover
  1002. *
  1003. * This routine Start br disover.
  1004. *
  1005. * @param disover parameter
  1006. *
  1007. * @return 0 excute successed , others failed
  1008. */
  1009. int bt_manager_br_start_discover(struct btsrv_discover_param *param);
  1010. /**
  1011. * @brief Stop br disover
  1012. *
  1013. * This routine Stop br disover.
  1014. *
  1015. * @return 0 excute successed , others failed
  1016. */
  1017. int bt_manager_br_stop_discover(void);
  1018. /**
  1019. * @brief connect to target bluetooth device
  1020. *
  1021. * This routine connect to target bluetooth device with bluetooth mac addr.
  1022. *
  1023. * @param bd bluetooth addr of target bluetooth device
  1024. * Mac low address store in low memory address
  1025. *
  1026. * @return 0 excute successed , others failed
  1027. */
  1028. int bt_manager_br_connect(bd_address_t *bd);
  1029. /**
  1030. * @brief disconnect to target bluetooth device
  1031. *
  1032. * This routine disconnect to target bluetooth device with bluetooth mac addr.
  1033. *
  1034. * @param bd bluetooth addr of target bluetooth device
  1035. * Mac low address store in low memory address
  1036. *
  1037. * @return 0 excute successed , others failed
  1038. */
  1039. int bt_manager_br_disconnect(bd_address_t *bd);
  1040. /**
  1041. * @brief bt manager lock stream pool
  1042. *
  1043. * This routine provides to unlock stream pool
  1044. *
  1045. * @return None
  1046. */
  1047. void bt_manager_stream_pool_lock(void);
  1048. /**
  1049. * @brief bt manager unlock stream pool
  1050. *
  1051. * This routine provides to unlock stream pool
  1052. *
  1053. * @return None
  1054. */
  1055. void bt_manager_stream_pool_unlock(void);
  1056. /**
  1057. * @brief bt manager set target type stream enable or disable
  1058. *
  1059. * This routine provides to set target type stream enable or disable
  1060. * @param type type of stream
  1061. * @param enable true :set stream enable false: set steam disable
  1062. *
  1063. * @return 0 excute successed , others failed
  1064. */
  1065. int bt_manager_stream_enable(int type, bool enable);
  1066. /**
  1067. * @brief bt manager check target type stream enable
  1068. *
  1069. * This routine provides to check target type stream enable
  1070. * @param type type of stream
  1071. *
  1072. * @return ture stream is enable
  1073. * @return false stream is not enable
  1074. */
  1075. bool bt_manager_stream_is_enable(int type);
  1076. /**
  1077. * @brief bt manager set target type stream
  1078. *
  1079. * This routine provides to set target type stream
  1080. * @param type type of stream
  1081. * @param stream handle of stream
  1082. *
  1083. * @return 0 excute successed , others failed
  1084. */
  1085. int bt_manager_set_stream(int type, io_stream_t stream);
  1086. /**
  1087. * @brief bt manager get target type stream
  1088. *
  1089. * This routine provides to get target type stream
  1090. * @param type type of stream
  1091. *
  1092. * @return handle of stream
  1093. */
  1094. io_stream_t bt_manager_get_stream(int type);
  1095. /**
  1096. * @cond INTERNAL_HIDDEN
  1097. */
  1098. /**
  1099. * @brief tws wait pair
  1100. *
  1101. * This routine provides to make device enter to tws pair modes
  1102. *
  1103. * @return None
  1104. */
  1105. void bt_manager_tws_wait_pair(void);
  1106. /**
  1107. * @brief tws get device role
  1108. *
  1109. * This routine provides to get tws device role
  1110. *
  1111. * @return device role of tws
  1112. */
  1113. int bt_manager_tws_get_dev_role(void);
  1114. /**
  1115. * @brief tws get peer version
  1116. *
  1117. * This routine provides to get tws peer version
  1118. *
  1119. * @return tws peer version
  1120. */
  1121. uint8_t bt_manager_tws_get_peer_version(void);
  1122. /**
  1123. * INTERNAL_HIDDEN @endcond
  1124. */
  1125. /**
  1126. * @brief Create a new spp ble stream
  1127. *
  1128. * This routine Create a new spp ble stream
  1129. * @param init param for spp ble stream
  1130. *
  1131. * @return handle of stream
  1132. */
  1133. io_stream_t sppble_stream_create(void *param);
  1134. /**
  1135. * @brief bt manager state notify
  1136. *
  1137. * This routine provides to notify bt state .
  1138. *
  1139. * @param state state of bt device.
  1140. *
  1141. * @return 0 excute successed , others failed
  1142. */
  1143. int bt_manager_state_notify(int state);
  1144. /**
  1145. * @brief bt manager event notify
  1146. *
  1147. * This routine provides to notify bt event .
  1148. *
  1149. * @param event_id id of bt event
  1150. * @param event_data param of bt event
  1151. * @param event_data_size param size of bt event
  1152. *
  1153. * @return 0 excute successed , others failed
  1154. */
  1155. int bt_manager_event_notify(int event_id, void *event_data, int event_data_size);
  1156. /**
  1157. * @brief bt manager event notify
  1158. *
  1159. * This routine provides to notify bt event .
  1160. *
  1161. * @param event_id id of bt event
  1162. * @param event_data param of bt event
  1163. * @param event_data_size param size of bt event
  1164. * @param call_cb param callback function to free mem
  1165. *
  1166. * @return 0 excute successed , others failed
  1167. */
  1168. int bt_manager_event_notify_ext(int event_id, void *event_data, int event_data_size , MSG_CALLBAK call_cb);
  1169. /**
  1170. * @brief Get bluetooth wake lock
  1171. *
  1172. * This routine get bluetooth wake lock.
  1173. *
  1174. * @return 0: idle can sleep, other: busy can't sleep.
  1175. */
  1176. int bt_manager_get_wake_lock(void);
  1177. /**
  1178. * @brief bt manager set bt device state
  1179. *
  1180. * This routine provides to set bt device state.
  1181. * @param state
  1182. *
  1183. * @return 0 excute successed , others failed
  1184. */
  1185. int bt_manager_set_status(int state);
  1186. /**
  1187. * @brief bt manager check device mac and name
  1188. *
  1189. * This routine check device mac and name.
  1190. *
  1191. * @return None
  1192. */
  1193. void bt_manager_check_mac_name(void);
  1194. /**
  1195. * @cond INTERNAL_HIDDEN
  1196. */
  1197. /**
  1198. * @brief bt manager TWS sync volume to slave
  1199. *
  1200. * This routine for tws sync volume to slave.
  1201. * @param media_type Media type
  1202. * @param music_vol Volume
  1203. *
  1204. * @return None
  1205. */
  1206. void bt_manager_tws_sync_volume_to_slave(uint32_t media_type, uint32_t music_vol);
  1207. /**
  1208. * @brief bt manager TWS send command to peer
  1209. *
  1210. * This routine for tws send command to peer.
  1211. * @param command Command buffer
  1212. * @param command_len Command length
  1213. *
  1214. * @return None
  1215. */
  1216. void bt_manager_tws_send_command(uint8_t *command, int command_len);
  1217. /**
  1218. * @brief bt manager TWS send sync command to peer
  1219. *
  1220. * This routine for tws send sync command to peer.
  1221. * @param command Command buffer
  1222. * @param command_len Command length
  1223. *
  1224. * @return None
  1225. */
  1226. void bt_manager_tws_send_sync_command(uint8_t *command, int command_len);
  1227. /**
  1228. * @brief bt manager TWS send event to peer
  1229. *
  1230. * This routine for tws send event to peer.
  1231. * @param event Event to send
  1232. * @param event_param Event parameter
  1233. *
  1234. * @return None
  1235. */
  1236. void bt_manager_tws_send_event(uint8_t event, uint32_t event_param);
  1237. /**
  1238. * @brief bt manager TWS send sync event to peer
  1239. *
  1240. * This routine for tws send sync event to peer.
  1241. * @param event Event to send
  1242. * @param event_param Event parameter
  1243. *
  1244. * @return None
  1245. */
  1246. void bt_manager_tws_send_event_sync(uint8_t event, uint32_t event_param);
  1247. /**
  1248. * @brief bt manager TWS notify peer start play
  1249. *
  1250. * This routine for tws notify peer start play.
  1251. * @param media_type Media type to play
  1252. * @param codec_id Codec to play
  1253. * @param sample_rate Sample rate
  1254. *
  1255. * @return None
  1256. */
  1257. void bt_manager_tws_notify_start_play(uint8_t media_type, uint8_t codec_id, uint8_t sample_rate);
  1258. /**
  1259. * @brief bt manager TWS notify peer stop play
  1260. *
  1261. * This routine for tws notify peer stop play.
  1262. *
  1263. * @return None
  1264. */
  1265. void bt_manager_tws_notify_stop_play(void);
  1266. /**
  1267. * @brief bt manager get tws runtime observer function struct
  1268. *
  1269. * This routine get tws runtime observer function struct.
  1270. *
  1271. * @return tws_runtime_observer_t Observer function struct
  1272. */
  1273. tws_runtime_observer_t *bt_manager_tws_get_runtime_observer(void);
  1274. /**
  1275. * INTERNAL_HIDDEN @endcond
  1276. */
  1277. /**
  1278. * @brief bt manager set sco codec information
  1279. *
  1280. * This routine set sco codec information.
  1281. * @param codec_id Codec to play
  1282. * @param sample_rate Sample rate
  1283. *
  1284. * @return None
  1285. */
  1286. void bt_manager_sco_set_codec_info(uint8_t codec_id, uint8_t sample_rate);
  1287. /**
  1288. * @brief bt manager set allow sco connect by phone
  1289. *
  1290. * This routine set allow sco connect by phone.
  1291. * @param allowed True allow, false disallow
  1292. *
  1293. * @return int 0 Success, other failed
  1294. */
  1295. int bt_manager_allow_sco_connect(bool allowed);
  1296. /**
  1297. * @brief bt manager halt phone
  1298. *
  1299. * This routine halt phone.
  1300. *
  1301. * @return None
  1302. */
  1303. void bt_manager_halt_phone(void);
  1304. /**
  1305. * @brief bt manager resume phone
  1306. *
  1307. * This routine resume phone.
  1308. *
  1309. * @return None
  1310. */
  1311. void bt_manager_resume_phone(void);
  1312. /**
  1313. * @brief bt manager set BR visible
  1314. *
  1315. * This routine set BR visible.
  1316. * @param connectable True visible, False Disable visible.
  1317. *
  1318. * @return None
  1319. */
  1320. void bt_manager_set_visible(bool visible);
  1321. /**
  1322. * @brief bt manager set BR connectable
  1323. *
  1324. * This routine set BR connectable.
  1325. * @param connectable True Connectable, False Disable connectable.
  1326. *
  1327. * @return None
  1328. */
  1329. void bt_manager_set_connectable(bool connectable);
  1330. /**
  1331. * @brief bt manager stop auto reconnect
  1332. *
  1333. * @param None
  1334. *
  1335. * @return int 0 Success, other failed
  1336. */
  1337. int bt_manager_stop_auto_reconnect(void);
  1338. /**
  1339. * @brief bt manager check is auto reconnect in runing
  1340. *
  1341. * This routine check is auto reconnect in runing.
  1342. *
  1343. * @return True In runing. False Not in runing.
  1344. */
  1345. bool bt_manager_is_auto_reconnect_runing(void);
  1346. /**
  1347. * @brief bt manager get address linkkey
  1348. *
  1349. * This routine get address linkkey.
  1350. * @param addr Address.
  1351. * @param linkkey NULL or uint8_t buf[16].
  1352. *
  1353. * @return 0, get, other not find.
  1354. */
  1355. int bt_manager_get_addr_linkkey(bd_address_t *addr, uint8_t *linkkey);
  1356. /**
  1357. * @brief bt manager get linkkey
  1358. *
  1359. * This routine get linkkey.
  1360. * @param info Output linkkey information.
  1361. * @param cnt Max linkkey can get.
  1362. *
  1363. * @return int Number of linkkey returen.
  1364. */
  1365. int bt_manager_get_linkkey(struct bt_linkkey_info *info, uint8_t cnt);
  1366. /**
  1367. * @brief bt manager update linkkey
  1368. *
  1369. * This routine update linkkey.
  1370. * @param info Linkkey information for update.
  1371. * @param cnt Number of linkkey for update.
  1372. *
  1373. * @return int 0 Success, other Failed.
  1374. */
  1375. int bt_manager_update_linkkey(struct bt_linkkey_info *info, uint8_t cnt);
  1376. /**
  1377. * @brief bt manager write original linkkey
  1378. *
  1379. * This routine write original linkkey.
  1380. * @param addr Address for write linkkey.
  1381. * @param link_key Linkkey.
  1382. *
  1383. * @return int 0 Success, other Failed.
  1384. */
  1385. int bt_manager_write_ori_linkkey(bd_address_t *addr, uint8_t *link_key);
  1386. int bt_manager_get_connected_dev_rssi(bd_address_t *addr,btsrv_get_rssi_result_cb cb);
  1387. /**
  1388. * @brief bt manager get actived dev rssi
  1389. *
  1390. * This routine get actived dev rssi.
  1391. * @param rssi for save value.
  1392. *
  1393. * @return int 0 Success, 0x7F Failed.
  1394. */
  1395. int bt_manager_get_actived_dev_rssi(int8_t *rssi);
  1396. /**
  1397. * @brief bt manager clear br linkkey
  1398. *
  1399. * This routine clear br linkkey.
  1400. * @param addr for one device and NULL for all.
  1401. *
  1402. * @return None
  1403. */
  1404. void bt_manager_clear_linkkey(bd_address_t *addr);
  1405. /**
  1406. * @brief bt manager connnect br resolve address
  1407. *
  1408. * This routine connnect br resolve address.
  1409. * @param param Resolve parameter.
  1410. *
  1411. * @return None
  1412. */
  1413. void bt_manager_br_resolve_connect(void *param);
  1414. /**
  1415. * @cond INTERNAL_HIDDEN
  1416. */
  1417. /**
  1418. * @brief bt manager tws check both is woodpecker device
  1419. *
  1420. * This routine for tws check both is woodpecker device.
  1421. *
  1422. * @return bool True Both are woodpecker device, False peer not woodpecker device.
  1423. */
  1424. bool bt_manager_tws_check_is_woodpecker(void);
  1425. /**
  1426. * @brief bt manager tws check both is support select feature
  1427. *
  1428. * This routine for tws check both is support select feature
  1429. * @param feature Select feature.
  1430. *
  1431. * @return bool True Both are support, False at least one device not support.
  1432. */
  1433. bool bt_manager_tws_check_support_feature(uint32_t feature);
  1434. /**
  1435. * @brief bt manager tws check both is support select feature
  1436. *
  1437. * This routine for tws check both is support select feature
  1438. * @param feature Select feature.
  1439. *
  1440. * @return bool True Both are support, False at least one device not support.
  1441. */
  1442. void bt_manager_tws_set_stream_type(uint8_t stream_type);
  1443. /**
  1444. * @brief bt manager tws set codec
  1445. *
  1446. * This routine for tws set codec
  1447. * @param codec Set codec.
  1448. *
  1449. * @return None.
  1450. */
  1451. void bt_manager_tws_set_codec(uint8_t codec);
  1452. /**
  1453. * @brief bt manager disconnect all device and enter pair mode
  1454. *
  1455. * This routine disconnect all device and enter pair mode
  1456. *
  1457. * @return None.
  1458. */
  1459. void bt_manager_tws_disconnect_and_wait_pair(void);
  1460. /**
  1461. * @brief bt manager notify tws channle mode switch
  1462. *
  1463. * This routine notify tws channle mode switch
  1464. *
  1465. * @return None.
  1466. */
  1467. void bt_manager_tws_channel_mode_switch(void);
  1468. /**
  1469. * INTERNAL_HIDDEN @endcond
  1470. */
  1471. /**
  1472. * @brief bt manager map(Message access profile) as client connect server
  1473. *
  1474. * This routine map as client connect server
  1475. *
  1476. * @param bd Server address.
  1477. * @param path Map access path.
  1478. * @param cb Map callback function.
  1479. *
  1480. * @return uint8_t 0 Failed, other app_id for later used.
  1481. */
  1482. uint8_t btmgr_map_client_connect(bd_address_t *bd, char *path, struct btmgr_map_cb *cb);
  1483. /**
  1484. * @brief bt manager map set folder
  1485. *
  1486. * This routine for map set folder
  1487. *
  1488. * @param app_id Map app id return by connect.
  1489. * @param path Folder path.
  1490. * @param flags Reserve for future.
  1491. *
  1492. * @return uint8_t 0 Success, other Failed.
  1493. */
  1494. uint8_t btmgr_map_client_set_folder(uint8_t app_id, char *path, uint8_t flags);
  1495. /**
  1496. * @brief bt manager map get folder listing
  1497. *
  1498. * This routine for map get folder listing
  1499. *
  1500. * @param app_id Map app id return by connect.
  1501. *
  1502. * @return int 0 Success, other Failed.
  1503. */
  1504. int btmgr_map_get_folder_listing(uint8_t app_id);
  1505. /**
  1506. * @brief bt manager map get message listing
  1507. *
  1508. * This routine for map get message listing
  1509. *
  1510. * @param app_id Map app id return by connect.
  1511. * @param max_cn Max messages listing.
  1512. * @param mask
  1513. * MAP_PARAMETER_MASK_DATETIME = (0x1 << 1)
  1514. * MAP_PARAMETER_MASK_SENDER_ADDRESS = (0x1 << 3)
  1515. *
  1516. * @return int 0 Success, other Failed.
  1517. */
  1518. int btmgr_map_get_messages_listing(uint8_t app_id, uint16_t max_cn, uint32_t mask);
  1519. /**
  1520. * @brief bt manager map abort get message
  1521. *
  1522. * This routine for map abort get message
  1523. *
  1524. * @param app_id Map app id return by connect.
  1525. *
  1526. * @return int 0 Success, other Failed.
  1527. */
  1528. int btmgr_map_abort_get(uint8_t app_id);
  1529. /**
  1530. * @brief bt manager map disconnect
  1531. *
  1532. * This routine for map disconnect
  1533. *
  1534. * @param app_id Map app id return by connect.
  1535. *
  1536. * @return int 0 Success, other Failed.
  1537. */
  1538. int btmgr_map_client_disconnect(uint8_t app_id);
  1539. /**
  1540. * @cond INTERNAL_HIDDEN
  1541. */
  1542. /**
  1543. * @brief bt manager ble handle ancs_ams event
  1544. *
  1545. * This routine for ancs_ams event handle
  1546. *
  1547. * @param code for event data for param.
  1548. *
  1549. * @return N/A.
  1550. */
  1551. void bt_manager_ble_ancs_ams_handle(uint8_t code, void* date);
  1552. /**
  1553. * @brief bt manager reset btdev
  1554. *
  1555. * This routine for bt_manager reset btdev
  1556. *
  1557. * @param N/A.
  1558. *
  1559. * @return 0 or success , other for error.
  1560. */
  1561. int bt_manager_reset_btdev(void);
  1562. #ifdef CONFIG_BT_A2DP_TRS
  1563. /**
  1564. * @brief bt manager transfer get a2dp codec ID
  1565. *
  1566. * This routine for transfer get a2dp codec ID
  1567. *
  1568. * @return int Codec ID.
  1569. */
  1570. int bt_manager_trs_a2dp_get_codecid(void);
  1571. /**
  1572. * @brief bt manager transfer get a2dp sample rate
  1573. *
  1574. * This routine for transfer get a2dp sample rate
  1575. *
  1576. * @return int Sample rate.
  1577. */
  1578. int bt_manager_trs_a2dp_get_sample_rate(void);
  1579. /**
  1580. * @brief bt manager transfer start connect player
  1581. *
  1582. * This routine for transfer start connect player
  1583. *
  1584. * @param mac Player address.
  1585. *
  1586. * @return None.
  1587. */
  1588. void bt_manager_trs_start_connect(uint8_t *mac);
  1589. /**
  1590. * @brief bt manager transfer enable stream
  1591. *
  1592. * This routine for transfer enable stream
  1593. *
  1594. * @param enable True enable, False Disable.
  1595. *
  1596. * @return int 0 Success, other Failed.
  1597. */
  1598. int bt_manager_trs_stream_enable(bool enable);
  1599. /**
  1600. * @brief bt manager transfer check stream is enable
  1601. *
  1602. * This routine for transfer check stream is enable
  1603. *
  1604. * @return bool True Stream is enable, False Stream disable.
  1605. */
  1606. bool bt_manager_trs_stream_is_enable(void);
  1607. /**
  1608. * @brief bt manager transfer set stream
  1609. *
  1610. * This routine for transfer set stream
  1611. *
  1612. * @param stream Stream to set.
  1613. *
  1614. * @return int 0 Success, other Failed.
  1615. */
  1616. int bt_manager_trs_set_stream(io_stream_t stream);
  1617. /**
  1618. * @brief bt manager transfer get play stream
  1619. *
  1620. * This routine for transfer get play stream
  1621. *
  1622. * @return io_stream_t The play stream.
  1623. */
  1624. io_stream_t bt_manager_trs_get_stream(void);
  1625. /**
  1626. * @brief bt manager transfer get connected device number
  1627. *
  1628. * This routine for transfer get play stream
  1629. *
  1630. * @return int The number of connected device.
  1631. */
  1632. int bt_manager_trs_get_connected_dev_num(void);
  1633. /**
  1634. * @brief bt manager transfer get paired device info
  1635. *
  1636. * This routine for transfer get paired device
  1637. *
  1638. * @return paired dev num.
  1639. */
  1640. int8_t bt_manager_get_trs_dev_info(struct bt_trs_list_dev_t *device_list,uint8_t max);
  1641. /**
  1642. * @brief bt manager transfer clear paired device info
  1643. *
  1644. * This routine for transfer clear paired device
  1645. *
  1646. * @param bt addr.
  1647. *
  1648. * @return null.
  1649. */
  1650. int bt_manager_clear_trs_dev_info(bd_address_t *bd);
  1651. /**
  1652. * @brief spp connect bt uuid
  1653. *
  1654. * This routine provides to connect spp channel
  1655. *
  1656. * @param uuid uuid of spp connect
  1657. *
  1658. * @return 0 excute successed , others failed
  1659. */
  1660. uint8_t bt_manager_spp_connect_by_uuid(bd_address_t *bd, uint8_t *uuid);
  1661. #endif
  1662. #ifdef __cplusplus
  1663. }
  1664. #endif
  1665. /**
  1666. * INTERNAL_HIDDEN @endcond
  1667. */
  1668. /**
  1669. * @} end defgroup bt_manager_apis
  1670. */
  1671. #endif