summaryrefslogtreecommitdiffstats
path: root/keyboards/infinity60/keymaps/jpetermans/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/infinity60/keymaps/jpetermans/readme.md')
-rw-r--r--keyboards/infinity60/keymaps/jpetermans/readme.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/keyboards/infinity60/keymaps/jpetermans/readme.md b/keyboards/infinity60/keymaps/jpetermans/readme.md
index 7e60a7f0d..f50bee617 100644
--- a/keyboards/infinity60/keymaps/jpetermans/readme.md
+++ b/keyboards/infinity60/keymaps/jpetermans/readme.md
@@ -72,10 +72,13 @@ chMBPost(&led_mailbox, message, timeout);
-timeout is usually TIME_IMMEDIATE
An example:
-1. set the message to be sent. First byte (LSB) is the led address, and second is the message type
- * `msg=(ON_LED << 8) | 42;`
-2. send msg to the led mailbox
- * `chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);`
+```c
+//set the message to be sent. First byte (LSB) is the led address, and second is the message type
+msg=(ON_LED << 8) | 42;
+
+//send msg to the led mailbox
+chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);
+```
Another:
```c