aboutsummaryrefslogtreecommitdiff
path: root/keyboards/infinity60
diff options
context:
space:
mode:
authorjpetermans <tibcmhhm@gmail.com>2017-08-17 12:57:47 -0700
committerJack Humbert <jack.humb@gmail.com>2017-08-21 23:22:36 -0400
commitdbd4ce19e92db5323da191b2f3812d1d33da3e32 (patch)
treebef6872c38ad9ec880f3b0a31415d04a03d84a33 /keyboards/infinity60
parent9ff064ae504aaef593ffd390b6b6d815f1c1066b (diff)
downloadqmk_firmware-dbd4ce19e92db5323da191b2f3812d1d33da3e32.tar.gz
qmk_firmware-dbd4ce19e92db5323da191b2f3812d1d33da3e32.zip
Correct jpetermans keymap readme and update copyright info
Diffstat (limited to 'keyboards/infinity60')
-rw-r--r--keyboards/infinity60/keymaps/jpetermans/readme.md4
-rw-r--r--keyboards/infinity60/led.c2
-rw-r--r--keyboards/infinity60/led_controller.c2
-rw-r--r--keyboards/infinity60/led_controller.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/keyboards/infinity60/keymaps/jpetermans/readme.md b/keyboards/infinity60/keymaps/jpetermans/readme.md
index b83057ea7..833b467ee 100644
--- a/keyboards/infinity60/keymaps/jpetermans/readme.md
+++ b/keyboards/infinity60/keymaps/jpetermans/readme.md
@@ -18,7 +18,7 @@ digits mean "row" and "col", i.e. 45 means pin 4, column 5 in the IS31 datasheet
18 18
19The IS31 includes 8 led pages (or frames) 0-7 than can be displayed, and each page consists of 144 bytes. 19The IS31 includes 8 led pages (or frames) 0-7 than can be displayed, and each page consists of 144 bytes.
20- **bytes 0 - 17** - LED control (on/off). 20- **bytes 0 - 17** - LED control (on/off).
21 * 18 pins which alternate between A and B matrices (A1, B1, A2, B2, ..). 21 * 18 bytes which alternate between A and B matrices (A1, B1, A2, B2, ..).
22 * Each byte controls the 8 leds on that pin with bits (8 to 1). 22 * Each byte controls the 8 leds on that pin with bits (8 to 1).
23- **bytes 8 - 35** - Blink control. 23- **bytes 8 - 35** - Blink control.
24 * Same as LED control above, but sets blink on/off. 24 * Same as LED control above, but sets blink on/off.
@@ -67,7 +67,7 @@ chMBPost(&led_mailbox, message, timeout);
67 67
68An example: 68An example:
69```c 69```c
70//set the message to be sent. First byte (LSB) is the led address, and second is the message type 70//set the message to be sent. First byte (LSB) is the message type, and second is the led address
71msg=(42 << 8) | ON_LED; 71msg=(42 << 8) | ON_LED;
72 72
73//send msg to the led mailbox 73//send msg to the led mailbox
diff --git a/keyboards/infinity60/led.c b/keyboards/infinity60/led.c
index 53147a78a..1f77f9029 100644
--- a/keyboards/infinity60/led.c
+++ b/keyboards/infinity60/led.c
@@ -1,5 +1,5 @@
1/* 1/*
2Copyright 2015 Jun Wako <wakojun@gmail.com> 2Copyright 2017 jpetermans <tibcmhhm@gmail.com>
3 3
4This program is free software: you can redistribute it and/or modify 4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by 5it under the terms of the GNU General Public License as published by
diff --git a/keyboards/infinity60/led_controller.c b/keyboards/infinity60/led_controller.c
index 21f95a9c1..5c9b81ba4 100644
--- a/keyboards/infinity60/led_controller.c
+++ b/keyboards/infinity60/led_controller.c
@@ -1,5 +1,5 @@
1/* 1/*
2Copyright 2016 flabbergast <s3+flabbergast@sdfeu.org> 2Copyright 2017 jpetermans <tibcmhhm@gmail.com>
3 3
4This program is free software: you can redistribute it and/or modify 4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by 5it under the terms of the GNU General Public License as published by
diff --git a/keyboards/infinity60/led_controller.h b/keyboards/infinity60/led_controller.h
index eb6060f26..4af352227 100644
--- a/keyboards/infinity60/led_controller.h
+++ b/keyboards/infinity60/led_controller.h
@@ -1,5 +1,5 @@
1/* 1/*
2Copyright 2016 flabbergast <s3+flabbergast@sdfeu.org> 2Copyright 2017 jpetermans <tibcmhhm@gmail.com>
3 3
4This program is free software: you can redistribute it and/or modify 4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by 5it under the terms of the GNU General Public License as published by