We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent3fcbe48 commitd05c68fCopy full SHA for d05c68f
libraries/SPI/README.md
@@ -42,7 +42,8 @@ void setup() {
42
#### Change default `SPI` instance pins
43
It is also possible to change the default pins used by the `SPI` instance using above API:
44
45
-[[/img/Warning-icon.png|alt="Warning"]] **Have to be called before `begin()`.**
+> [!WARNING]
46
+> **Have to be called before `begin()`.**
47
48
* `void setMISO(uint32_t miso)`
49
* `void setMOSI(uint32_t mosi)`
@@ -53,7 +54,8 @@ It is also possible to change the default pins used by the `SPI` instance using
53
54
* `void setSCLK(PinName sclk)`
55
* `void setSSEL(PinName ssel)`
56
-**_Note 1_** Using `setSSEL()` allows to enable hardware CS pin management linked to the SPI peripheral.
57
+> [!NOTE]
58
+> Using `setSSEL()` allows to enable hardware CS pin management linked to the SPI peripheral.
59
60
##### Example:
61
```C++