diff options
| author | Ryan <fauxpark@gmail.com> | 2020-12-16 14:27:23 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-16 14:27:23 +1100 |
| commit | 9366ed728280f4875ebbba9c0ef1eade03c96d35 (patch) | |
| tree | 93a1b85a28ccf4d4fa0b620ad3abcbf566168506 /keyboards/keyboardio | |
| parent | 37fb14f1b5cbcb0e5ff60abc9152073635234ba4 (diff) | |
| download | qmk_firmware-9366ed728280f4875ebbba9c0ef1eade03c96d35.tar.gz qmk_firmware-9366ed728280f4875ebbba9c0ef1eade03c96d35.zip | |
Normalise include statements in keyboard code (#11185)
Diffstat (limited to 'keyboards/keyboardio')
| -rw-r--r-- | keyboards/keyboardio/model01/config.h | 2 | ||||
| -rw-r--r-- | keyboards/keyboardio/model01/leds.c | 8 | ||||
| -rw-r--r-- | keyboards/keyboardio/model01/leds.h | 4 | ||||
| -rw-r--r-- | keyboards/keyboardio/model01/matrix.c | 4 | ||||
| -rw-r--r-- | keyboards/keyboardio/model01/model01.c | 4 | ||||
| -rw-r--r-- | keyboards/keyboardio/model01/model01.h | 2 |
6 files changed, 12 insertions, 12 deletions
diff --git a/keyboards/keyboardio/model01/config.h b/keyboards/keyboardio/model01/config.h index c2160979c..043e21cfa 100644 --- a/keyboards/keyboardio/model01/config.h +++ b/keyboards/keyboardio/model01/config.h | |||
| @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 17 | 17 | ||
| 18 | #pragma once | 18 | #pragma once |
| 19 | 19 | ||
| 20 | #include <config_common.h> | 20 | #include "config_common.h" |
| 21 | 21 | ||
| 22 | /* USB Device descriptor parameter */ | 22 | /* USB Device descriptor parameter */ |
| 23 | #define VENDOR_ID 0x1209 | 23 | #define VENDOR_ID 0x1209 |
diff --git a/keyboards/keyboardio/model01/leds.c b/keyboards/keyboardio/model01/leds.c index b21c1a5c8..0308887d3 100644 --- a/keyboards/keyboardio/model01/leds.c +++ b/keyboards/keyboardio/model01/leds.c | |||
| @@ -13,10 +13,10 @@ | |||
| 13 | * You should have received a copy of the GNU General Public License | 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | #include <quantum.h> | 16 | #include "quantum.h" |
| 17 | #include <i2c_master.h> | 17 | #include "i2c_master.h" |
| 18 | #include <led_tables.h> | 18 | #include "led_tables.h" |
| 19 | #include <rgb_matrix.h> | 19 | #include "rgb_matrix.h" |
| 20 | #include <string.h> | 20 | #include <string.h> |
| 21 | #include "model01.h" | 21 | #include "model01.h" |
| 22 | 22 | ||
diff --git a/keyboards/keyboardio/model01/leds.h b/keyboards/keyboardio/model01/leds.h index 405bdf328..4d185919b 100644 --- a/keyboards/keyboardio/model01/leds.h +++ b/keyboards/keyboardio/model01/leds.h | |||
| @@ -15,8 +15,8 @@ | |||
| 15 | */ | 15 | */ |
| 16 | #pragma once | 16 | #pragma once |
| 17 | 17 | ||
| 18 | #include <quantum.h> | 18 | #include "quantum.h" |
| 19 | #include <rgb_matrix.h> | 19 | #include "rgb_matrix.h" |
| 20 | 20 | ||
| 21 | void set_all_leds_to(uint8_t r, uint8_t g, uint8_t b); | 21 | void set_all_leds_to(uint8_t r, uint8_t g, uint8_t b); |
| 22 | void set_led_to(int led, uint8_t r, uint8_t g, uint8_t b); | 22 | void set_led_to(int led, uint8_t r, uint8_t g, uint8_t b); |
diff --git a/keyboards/keyboardio/model01/matrix.c b/keyboards/keyboardio/model01/matrix.c index f1f9024c7..92cca9913 100644 --- a/keyboards/keyboardio/model01/matrix.c +++ b/keyboards/keyboardio/model01/matrix.c | |||
| @@ -13,8 +13,8 @@ | |||
| 13 | * You should have received a copy of the GNU General Public License | 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | #include <quantum.h> | 16 | #include "quantum.h" |
| 17 | #include <i2c_master.h> | 17 | #include "i2c_master.h" |
| 18 | #include <string.h> | 18 | #include <string.h> |
| 19 | #include "model01.h" | 19 | #include "model01.h" |
| 20 | 20 | ||
diff --git a/keyboards/keyboardio/model01/model01.c b/keyboards/keyboardio/model01/model01.c index 29615ca86..d9fac1cf0 100644 --- a/keyboards/keyboardio/model01/model01.c +++ b/keyboards/keyboardio/model01/model01.c | |||
| @@ -13,8 +13,8 @@ | |||
| 13 | * You should have received a copy of the GNU General Public License | 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | #include <quantum.h> | 16 | #include "quantum.h" |
| 17 | #include <i2c_master.h> | 17 | #include "i2c_master.h" |
| 18 | #include <string.h> | 18 | #include <string.h> |
| 19 | #include "model01.h" | 19 | #include "model01.h" |
| 20 | 20 | ||
diff --git a/keyboards/keyboardio/model01/model01.h b/keyboards/keyboardio/model01/model01.h index a83e33cd8..870cb441f 100644 --- a/keyboards/keyboardio/model01/model01.h +++ b/keyboards/keyboardio/model01/model01.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | */ | 15 | */ |
| 16 | #pragma once | 16 | #pragma once |
| 17 | 17 | ||
| 18 | #include <quantum.h> | 18 | #include "quantum.h" |
| 19 | 19 | ||
| 20 | #define LAYOUT( \ | 20 | #define LAYOUT( \ |
| 21 | L07, L06, L05, L04, L03, L02, R05, R04, R03, R02, R01, R00, \ | 21 | L07, L06, L05, L04, L03, L02, R05, R04, R03, R02, R01, R00, \ |
