summaryrefslogtreecommitdiffstats
path: root/keyboards/infinity60/keymaps/jpetermans/readme.md
diff options
context:
space:
mode:
authorjpetermans <tibcmhhm@gmail.com>2017-05-09 01:38:44 +0200
committerjpetermans <tibcmhhm@gmail.com>2017-05-09 01:38:44 +0200
commita144968807f5bf98b2c41cfe153f3df780ed4eaa (patch)
tree7e04e13bcdfe5761a0ef06e8e2bc5245f4ee0683 /keyboards/infinity60/keymaps/jpetermans/readme.md
parent16774333ad47ada2367b5ca283d0af5060ff8415 (diff)
downloadqmk_firmware-a144968807f5bf98b2c41cfe153f3df780ed4eaa.tar.gz
qmk_firmware-a144968807f5bf98b2c41cfe153f3df780ed4eaa.tar.xz
remove breath functions from keymap
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