Skip to content

Commit f0a91e4

Browse files
committed
Tweaks on syntax - for doxygen gen'd docs
1 parent a0ead5f commit f0a91e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/ar_ibus.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ The general pattern for a device driver implementation that uses the SparkFun To
131131

132132
The first step is to implement a core, platform independent version of the driver that communicates to the target device using the methods of a ```sfeTkIBus``` interface. By limiting use to the IBus interface, the core implementation can use any bus type or platform that implements the sfeTkIBus interface.
133133

134-
>[!IMPORTANT]
134+
> [!IMPORTANT]
135135
> At this level, the driver is only using a ```sfeTkIBus``` interface, not any specific bus implementation.
136136
137137
This driver has the following unique functionality:
@@ -141,12 +141,12 @@ This driver has the following unique functionality:
141141

142142
#### Simple Example of an Independent Driver Implementation
143143

144-
>[!NOTE]
144+
> [!NOTE]
145145
> This code is **pseudo-code**, used to demonstrate the key concepts of the implementation pattern.
146146
147147
This implementation would take the following form:
148148

149-
```c++
149+
```cpp
150150

151151
class myDriverClass
152152
{
@@ -205,7 +205,7 @@ The following is an example of an I2C class in Arduino based on the previous pla
205205
> [!NOTE]
206206
> If your device supports repeated starts, make sure to include ```_theI2CBus.setStop(false)``` in your begin function. Otherwise this can cause issues with your device.
207207
208-
```c++
208+
```cpp
209209
210210
class myArduinoDriverI2C : public myDriverClass
211211
{
@@ -246,7 +246,7 @@ The following is a SPI version of the driver implemented in Arduino. While simil
246246
> [!NOTE]
247247
> This class implements a ```isConnected()``` method that just calls the superclasses ```checkDeviceID()``` method to determine if the device is available on the bus.
248248
249-
```c++
249+
```cpp
250250

251251
class myArduinoDriveSPI : public myDriverClass
252252
{

0 commit comments

Comments
 (0)