File tree 2 files changed +5
-3
lines changed 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ void setup() {
37
37
#### Change default `SPI` instance pins
38
38
It is also possible to change the default pins used by the `SPI` instance using above API:
39
39
40
- [[/img/Warning-icon.png|alt="Warning"]] **Have to be called before `begin()`.**
40
+ > [!WARNING]
41
+ > **Have to be called before `begin()`.**
41
42
42
43
* `void setMISO(uint32_t miso)`
43
44
* `void setMOSI(uint32_t mosi)`
@@ -48,7 +49,8 @@ It is also possible to change the default pins used by the `SPI` instance using
48
49
* `void setSCLK(PinName sclk)`
49
50
* `void setSSEL(PinName ssel)`
50
51
51
- **_Note 1_** Using `setSSEL()` allows to enable hardware CS pin management linked to the SPI peripheral.
52
+ > [!NOTE]
53
+ > Using `setSSEL()` allows to enable hardware CS pin management linked to the SPI peripheral.
52
54
53
55
##### Example:
54
56
```C++
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ void SPIClass::end()
97
97
/* *
98
98
* @brief Deprecated function.
99
99
* Configure the bit order: MSB first or LSB first.
100
- * @param _bitOrder : MSBFIRST or LSBFIRST
100
+ * @param bitOrder : MSBFIRST or LSBFIRST
101
101
*/
102
102
void SPIClass::setBitOrder (BitOrder bitOrder)
103
103
{
You can’t perform that action at this time.
0 commit comments