diff options
Diffstat (limited to 'keyboards/handwired')
6 files changed, 8 insertions, 8 deletions
diff --git a/keyboards/handwired/bluepill/bluepill70/led.c b/keyboards/handwired/bluepill/bluepill70/led.c index 5c557bbee..81437fb5e 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 | |||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #include "hal.h" | 18 | #include <hal.h> |
| 19 | #include "led.h" | 19 | #include "led.h" |
| 20 | 20 | ||
| 21 | 21 | ||
diff --git a/keyboards/handwired/bluepill/bluepill70/matrix.c b/keyboards/handwired/bluepill/bluepill70/matrix.c index b2c38e522..4d281fe21 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 | |||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #include "ch.h" | 18 | #include <ch.h> |
| 19 | #include "hal.h" | 19 | #include <hal.h> |
| 20 | 20 | ||
| 21 | /* | 21 | /* |
| 22 | * scan matrix | 22 | * 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 2809c9d18..64da24214 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 @@ | |||
| 14 | limitations under the License. | 14 | limitations under the License. |
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #include "hal.h" | 17 | #include <hal.h> |
| 18 | 18 | ||
| 19 | /** | 19 | /** |
| 20 | * @brief PAL setup. | 20 | * @brief PAL setup. |
diff --git a/keyboards/handwired/dactyl/twimaster.c b/keyboards/handwired/dactyl/twimaster.c index 2557f7e22..41684d3a6 100644 --- a/keyboards/handwired/dactyl/twimaster.c +++ b/keyboards/handwired/dactyl/twimaster.c | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | #include <inttypes.h> | 9 | #include <inttypes.h> |
| 10 | #include <compat/twi.h> | 10 | #include <compat/twi.h> |
| 11 | 11 | ||
| 12 | #include <i2cmaster.h> | 12 | #include "i2cmaster.h" |
| 13 | 13 | ||
| 14 | /* define CPU frequency in Hz here if not defined in Makefile */ | 14 | /* define CPU frequency in Hz here if not defined in Makefile */ |
| 15 | #ifndef F_CPU | 15 | #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 3770a6d68..25bd7da39 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 @@ | |||
| 1 | #include "62key.h" | 1 | #include "62key.h" |
| 2 | #include "rgblight.h" | 2 | #include "rgblight.h" |
| 3 | #include <keymap_colemak.h> | 3 | #include "keymap_colemak.h" |
| 4 | #include <sendstring_colemak.h> | 4 | #include "sendstring_colemak.h" |
| 5 | 5 | ||
| 6 | 6 | ||
| 7 | // Automatic Layer ID: | 7 | // Automatic Layer ID: |
diff --git a/keyboards/handwired/promethium/promethium.h b/keyboards/handwired/promethium/promethium.h index b8d635220..f35e5429b 100644 --- a/keyboards/handwired/promethium/promethium.h +++ b/keyboards/handwired/promethium/promethium.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #ifndef PROMETHIUM_H | 1 | #ifndef PROMETHIUM_H |
| 2 | #define PROMETHIUM_H | 2 | #define PROMETHIUM_H |
| 3 | 3 | ||
| 4 | #include "stdint.h" | 4 | #include <stdint.h> |
| 5 | 5 | ||
| 6 | void battery_poll(uint8_t level); | 6 | void battery_poll(uint8_t level); |
| 7 | void led_set_kb(uint8_t usb_led); | 7 | void led_set_kb(uint8_t usb_led); |
