summaryrefslogtreecommitdiff
path: root/keyboards/handwired
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired')
-rw-r--r--keyboards/handwired/bluepill/bluepill70/led.c2
-rw-r--r--keyboards/handwired/bluepill/bluepill70/matrix.c4
-rw-r--r--keyboards/handwired/bluepill/boards/GENERIC_STM32_F103/board.c2
-rw-r--r--keyboards/handwired/dactyl/twimaster.c2
-rw-r--r--keyboards/handwired/dactyl_manuform/dmote/62key/keymaps/default/keymap.c4
-rw-r--r--keyboards/handwired/promethium/promethium.h2
6 files changed, 8 insertions, 8 deletions
diff --git a/keyboards/handwired/bluepill/bluepill70/led.c b/keyboards/handwired/bluepill/bluepill70/led.c
index 5c557bbee1..81437fb5ec 100644
--- a/keyboards/handwired/bluepill/bluepill70/led.c
+++ b/keyboards/handwired/bluepill/bluepill70/led.c
@@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "hal.h"
+#include <hal.h>
#include "led.h"
diff --git a/keyboards/handwired/bluepill/bluepill70/matrix.c b/keyboards/handwired/bluepill/bluepill70/matrix.c
index b2c38e5226..4d281fe210 100644
--- a/keyboards/handwired/bluepill/bluepill70/matrix.c
+++ b/keyboards/handwired/bluepill/bluepill70/matrix.c
@@ -15,8 +15,8 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "ch.h"
-#include "hal.h"
+#include <ch.h>
+#include <hal.h>
/*
* scan matrix
diff --git a/keyboards/handwired/bluepill/boards/GENERIC_STM32_F103/board.c b/keyboards/handwired/bluepill/boards/GENERIC_STM32_F103/board.c
index 2809c9d184..64da242148 100644
--- a/keyboards/handwired/bluepill/boards/GENERIC_STM32_F103/board.c
+++ b/keyboards/handwired/bluepill/boards/GENERIC_STM32_F103/board.c
@@ -14,7 +14,7 @@
limitations under the License.
*/
-#include "hal.h"
+#include <hal.h>
/**
* @brief PAL setup.
diff --git a/keyboards/handwired/dactyl/twimaster.c b/keyboards/handwired/dactyl/twimaster.c
index 2557f7e227..41684d3a6d 100644
--- a/keyboards/handwired/dactyl/twimaster.c
+++ b/keyboards/handwired/dactyl/twimaster.c
@@ -9,7 +9,7 @@
#include <inttypes.h>
#include <compat/twi.h>
-#include <i2cmaster.h>
+#include "i2cmaster.h"
/* define CPU frequency in Hz here if not defined in Makefile */
#ifndef F_CPU
diff --git a/keyboards/handwired/dactyl_manuform/dmote/62key/keymaps/default/keymap.c b/keyboards/handwired/dactyl_manuform/dmote/62key/keymaps/default/keymap.c
index 3770a6d68e..25bd7da392 100644
--- a/keyboards/handwired/dactyl_manuform/dmote/62key/keymaps/default/keymap.c
+++ b/keyboards/handwired/dactyl_manuform/dmote/62key/keymaps/default/keymap.c
@@ -1,7 +1,7 @@
#include "62key.h"
#include "rgblight.h"
-#include <keymap_colemak.h>
-#include <sendstring_colemak.h>
+#include "keymap_colemak.h"
+#include "sendstring_colemak.h"
// Automatic Layer ID:
diff --git a/keyboards/handwired/promethium/promethium.h b/keyboards/handwired/promethium/promethium.h
index b8d6352201..f35e5429bd 100644
--- a/keyboards/handwired/promethium/promethium.h
+++ b/keyboards/handwired/promethium/promethium.h
@@ -1,7 +1,7 @@
#ifndef PROMETHIUM_H
#define PROMETHIUM_H
-#include "stdint.h"
+#include <stdint.h>
void battery_poll(uint8_t level);
void led_set_kb(uint8_t usb_led);