Skip to content

Commit 900ad78

Browse files
paul-szczepanek-arm0xc0170
authored andcommitted
add doxygen
1 parent 11abc67 commit 900ad78

File tree

1 file changed

+18
-0
lines changed
  • features/FEATURE_BLE/targets/TARGET_CORDIO_LL/stack_adaptation

1 file changed

+18
-0
lines changed

features/FEATURE_BLE/targets/TARGET_CORDIO_LL/stack_adaptation/fake_lhci_drv.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,26 @@
2121
extern "C" {
2222
#endif
2323

24+
/**
25+
* Send bytes from host to controller.
26+
*
27+
* @param prot Protocol, must be CHCI_TR_PROT_BLE.
28+
* @param type HCI_ACL_TYPE or HCI_CMD_TYPE.
29+
* @param len Buffer length.
30+
* @param pData Data to be sent.
31+
* @return Number of bytes processed.
32+
*/
2433
uint16_t FakeChciTrRead(uint8_t prot, uint8_t type, uint16_t len, uint8_t *pData);
2534

35+
/**
36+
* Send bytes from controller to host.
37+
*
38+
* @param prot Protocol, must be CHCI_TR_PROT_BLE.
39+
* @param type HCI_ACL_TYPE or HCI_EVT_TYPE.
40+
* @param len Buffer length.
41+
* @param pData Data to be sent.
42+
* @return Number of bytes processed.
43+
*/
2644
uint16_t FakeChciTrWrite(uint8_t prot, uint8_t type, uint16_t len, uint8_t *pData);
2745

2846
#ifdef __cplusplus

0 commit comments

Comments
 (0)