aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/protocol
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-12-11 02:46:19 +0000
committerQMK Bot <hello@qmk.fm>2020-12-11 02:46:19 +0000
commitfdfcce57e1c46765e0aebf37ad3d9611a7384241 (patch)
tree9524405fef6cc3b16965517735dc0ef315f67ab1 /tmk_core/protocol
parented76f4394fd95413f7da11e2342b0965182ccb95 (diff)
parent501f2fdef115314713e94428d409e5c3b5bfc1c2 (diff)
downloadqmk_firmware-fdfcce57e1c46765e0aebf37ad3d9611a7384241.tar.gz
qmk_firmware-fdfcce57e1c46765e0aebf37ad3d9611a7384241.zip
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r--tmk_core/protocol/chibios/main.c4
-rw-r--r--tmk_core/protocol/chibios/usb_driver.c2
-rw-r--r--tmk_core/protocol/chibios/usb_driver.h2
-rw-r--r--tmk_core/protocol/chibios/usb_main.c4
-rw-r--r--tmk_core/protocol/chibios/usb_main.h4
-rw-r--r--tmk_core/protocol/lufa/lufa.c2
-rw-r--r--tmk_core/protocol/midi/bytequeue/interrupt_setting.c2
-rw-r--r--tmk_core/protocol/usb_descriptor.h2
8 files changed, 11 insertions, 11 deletions
diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c
index 400c0b8f5..b99a40f1e 100644
--- a/tmk_core/protocol/chibios/main.c
+++ b/tmk_core/protocol/chibios/main.c
@@ -15,8 +15,8 @@
15 * GPL v2 or later. 15 * GPL v2 or later.
16 */ 16 */
17 17
18#include "ch.h" 18#include <ch.h>
19#include "hal.h" 19#include <hal.h>
20 20
21#include "usb_main.h" 21#include "usb_main.h"
22 22
diff --git a/tmk_core/protocol/chibios/usb_driver.c b/tmk_core/protocol/chibios/usb_driver.c
index 22d3c91f5..cc0ce7600 100644
--- a/tmk_core/protocol/chibios/usb_driver.c
+++ b/tmk_core/protocol/chibios/usb_driver.c
@@ -22,7 +22,7 @@
22 * @{ 22 * @{
23 */ 23 */
24 24
25#include "hal.h" 25#include <hal.h>
26#include "usb_driver.h" 26#include "usb_driver.h"
27#include <string.h> 27#include <string.h>
28 28
diff --git a/tmk_core/protocol/chibios/usb_driver.h b/tmk_core/protocol/chibios/usb_driver.h
index 77dff8066..6d71bcec4 100644
--- a/tmk_core/protocol/chibios/usb_driver.h
+++ b/tmk_core/protocol/chibios/usb_driver.h
@@ -25,7 +25,7 @@
25#ifndef USB_DRIVER_H 25#ifndef USB_DRIVER_H
26# define USB_DRIVER_H 26# define USB_DRIVER_H
27 27
28# include "hal_usb_cdc.h" 28# include <hal_usb_cdc.h>
29 29
30/*===========================================================================*/ 30/*===========================================================================*/
31/* Driver constants. */ 31/* Driver constants. */
diff --git a/tmk_core/protocol/chibios/usb_main.c b/tmk_core/protocol/chibios/usb_main.c
index bb4bf6a58..096e6e676 100644
--- a/tmk_core/protocol/chibios/usb_main.c
+++ b/tmk_core/protocol/chibios/usb_main.c
@@ -25,8 +25,8 @@
25 * makes the assumption this is safe to avoid littering with preprocessor directives. 25 * makes the assumption this is safe to avoid littering with preprocessor directives.
26 */ 26 */
27 27
28#include "ch.h" 28#include <ch.h>
29#include "hal.h" 29#include <hal.h>
30 30
31#include "usb_main.h" 31#include "usb_main.h"
32 32
diff --git a/tmk_core/protocol/chibios/usb_main.h b/tmk_core/protocol/chibios/usb_main.h
index d8813f480..1381d0765 100644
--- a/tmk_core/protocol/chibios/usb_main.h
+++ b/tmk_core/protocol/chibios/usb_main.h
@@ -21,8 +21,8 @@
21// TESTING 21// TESTING
22// extern uint8_t blinkLed; 22// extern uint8_t blinkLed;
23 23
24#include "ch.h" 24#include <ch.h>
25#include "hal.h" 25#include <hal.h>
26 26
27/* ------------------------- 27/* -------------------------
28 * General USB driver header 28 * General USB driver header
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c
index 878be7d34..8fd4be8af 100644
--- a/tmk_core/protocol/lufa/lufa.c
+++ b/tmk_core/protocol/lufa/lufa.c
@@ -61,7 +61,7 @@ extern keymap_config_t keymap_config;
61#endif 61#endif
62 62
63#ifdef AUDIO_ENABLE 63#ifdef AUDIO_ENABLE
64# include <audio.h> 64# include "audio.h"
65#endif 65#endif
66 66
67#ifdef BLUETOOTH_ENABLE 67#ifdef BLUETOOTH_ENABLE
diff --git a/tmk_core/protocol/midi/bytequeue/interrupt_setting.c b/tmk_core/protocol/midi/bytequeue/interrupt_setting.c
index 1be1fee97..407cc65f4 100644
--- a/tmk_core/protocol/midi/bytequeue/interrupt_setting.c
+++ b/tmk_core/protocol/midi/bytequeue/interrupt_setting.c
@@ -32,7 +32,7 @@ interrupt_setting_t store_and_clear_interrupt(void) {
32 32
33void restore_interrupt_setting(interrupt_setting_t setting) { SREG = setting; } 33void restore_interrupt_setting(interrupt_setting_t setting) { SREG = setting; }
34#elif defined(__arm__) 34#elif defined(__arm__)
35# include "ch.h" 35# include <ch.h>
36 36
37interrupt_setting_t store_and_clear_interrupt(void) { 37interrupt_setting_t store_and_clear_interrupt(void) {
38 chSysLock(); 38 chSysLock();
diff --git a/tmk_core/protocol/usb_descriptor.h b/tmk_core/protocol/usb_descriptor.h
index aa8863f43..1b43cbf3b 100644
--- a/tmk_core/protocol/usb_descriptor.h
+++ b/tmk_core/protocol/usb_descriptor.h
@@ -46,7 +46,7 @@
46#include <LUFA/Drivers/USB/USB.h> 46#include <LUFA/Drivers/USB/USB.h>
47 47
48#ifdef PROTOCOL_CHIBIOS 48#ifdef PROTOCOL_CHIBIOS
49# include "hal.h" 49# include <hal.h>
50#endif 50#endif
51 51
52/* 52/*