Skip to content

Commit

Permalink
third readme fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetermans committed May 8, 2017
1 parent d1ff2bb commit 5fc5661
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions keyboards/infinity60/keymaps/jpetermans/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ An example:
* `chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);`
Another:
* `msg=(BLINK_TOGGLE_LED << 8) | 46;`
* `chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);`
- `msg=(BLINK_TOGGLE_LED << 8) | 46;`
- `chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);`
Finally, SET_FULL_ROW requires an extra byte with row information in the message so sending this message looks like:
* `msg=(row<<16) | (SET_FULL_ROW << 8) | (led_pin_byte);`
* `chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);`
- `msg=(row<<16) | (SET_FULL_ROW << 8) | (led_pin_byte);`
- `chMBPost(&led_mailbox, msg, TIME_IMMEDIATE);`

0 comments on commit 5fc5661

Please sign in to comment.