Skip to content

Commit db8f369

Browse files
author
Melinda Weed
committed
Fixing colons and formatting
1 parent 739bd66 commit db8f369

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

features/FEATURE_BLE/targets/TARGET_CORDIO/doc/PortingGuide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Compile the BLE Cordio port sources:
3535

3636
## Implement CordioHCIDriver:
3737

38-
Include an HCI driver for the BLE module used by the target, and a factory function which creates the BLE instance you use.
38+
Include an HCI driver for the BLE module used by the target, and a factory function that creates the BLE instance you use.
3939

4040
### Create source folder
4141

@@ -45,7 +45,7 @@ Include an HCI driver for the BLE module used by the target, and a factory funct
4545

4646
### Create the HCI driver
4747

48-
The HCI driver is split in two entities: one which handle HCI communication with the Bluetooth module and the other handling the initialization, reset sequence and memory dedicated for the Bluetooth controller.
48+
The HCI driver is split in two entities. One handles HCI communication with the Bluetooth module. The other handles initialization, reset sequence, and memory dedicated to the Bluetooth controller.
4949

5050
More information about the architecture can be found in [HCI abstraction architecture](HCIAbstraction.md).
5151

@@ -89,7 +89,7 @@ It inherits publicly from the base class `CordioHCITransportDriver`.
8989

9090
* **Sending data**: The function `write` sends data in input to the Bluetooth controller and return the number of bytes in the `data` buffer sent. Depending on the type of transport you implement, you may need to send the packet `type` to the controller before the packet data.
9191

92-
* **Receiving data**: Inject HCI data from the Bluetooth controller to the system by invoking the function `on_data_received`. This function is a static one and is provided by the base class.
92+
* **Receiving data**: Inject HCI data from the Bluetooth controller to the system by calling `on_data_received`. This is a static function provided by the base class.
9393

9494
**Example:**
9595

@@ -99,7 +99,7 @@ void on_data_received(uint8_t* data_received, uint16_t length_of_data_received);
9999

100100
#### HCIDriver
101101

102-
The template for the driver is:
102+
The HCIDriver template is:
103103

104104
```
105105
#include "CordioHCIDriver.h"

0 commit comments

Comments
 (0)