Browse Source

Fixup config template to match <> instead of "" for includes. (#11166)

pull/11170/head 0.11.3
Nick Brassel 3 years ago
committed by GitHub
parent
commit
01c7108db5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      platforms/chibios/keyboard-config-templates/board.h
  2. +1
    -1
      platforms/chibios/keyboard-config-templates/chconf.h
  3. +1
    -1
      platforms/chibios/keyboard-config-templates/halconf.h
  4. +1
    -1
      platforms/chibios/keyboard-config-templates/mcuconf.h

+ 1
- 1
platforms/chibios/keyboard-config-templates/board.h View File

@ -15,6 +15,6 @@
*/
#pragma once
#include_next "board.h"
#include_next <board.h>
// #undef STM32_HSE_BYPASS

+ 1
- 1
platforms/chibios/keyboard-config-templates/chconf.h View File

@ -17,4 +17,4 @@
// #define CH_CFG_OPTIMIZE_SPEED TRUE
#include_next "chconf.h"
#include_next <chconf.h>

+ 1
- 1
platforms/chibios/keyboard-config-templates/halconf.h View File

@ -17,4 +17,4 @@
// #define HAL_USE_DAC TRUE
#include_next "halconf.h"
#include_next <halconf.h>

+ 1
- 1
platforms/chibios/keyboard-config-templates/mcuconf.h View File

@ -15,7 +15,7 @@
*/
#pragma once
#include_next "mcuconf.h"
#include_next <mcuconf.h>
// #undef STM32_HSE_ENABLED
// #define STM32_HSE_ENABLED FALSE

Loading…
Cancel
Save