Skip to content

Commit

Permalink
Fixup config template to match <> instead of "" for includes. (qmk#11166
Browse files Browse the repository at this point in the history
)
  • Loading branch information
tzarc authored Dec 9, 2020
1 parent f440111 commit 01c7108
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion platforms/chibios/keyboard-config-templates/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/
#pragma once

#include_next "board.h"
#include_next <board.h>

// #undef STM32_HSE_BYPASS
2 changes: 1 addition & 1 deletion platforms/chibios/keyboard-config-templates/chconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

// #define CH_CFG_OPTIMIZE_SPEED TRUE

#include_next "chconf.h"
#include_next <chconf.h>
2 changes: 1 addition & 1 deletion platforms/chibios/keyboard-config-templates/halconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

// #define HAL_USE_DAC TRUE

#include_next "halconf.h"
#include_next <halconf.h>
2 changes: 1 addition & 1 deletion platforms/chibios/keyboard-config-templates/mcuconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
#pragma once

#include_next "mcuconf.h"
#include_next <mcuconf.h>

// #undef STM32_HSE_ENABLED
// #define STM32_HSE_ENABLED FALSE

0 comments on commit 01c7108

Please sign in to comment.