mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-07-08 12:45:35 -04:00
helix/rev3_4rows, helix/rev3_5rows: Fix build with converters (#21608)
The code for Helix rev3 boards could not be built with, e.g., `CONVERT_TO=rp2040_ce` due to invalid `#include <stdio.h>` in the keyboard level `config.h` (apparently the AVR version of that file contains guards against usage in assembly code, which was hiding the bug). Move `#include <stdio.h>` to the C sources which need it.
This commit is contained in:
parent
74d55cc1b7
commit
3759632625
2 changed files with 4 additions and 0 deletions
|
@ -16,6 +16,8 @@
|
|||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
// Defines names for use in layer keycodes and the keymap
|
||||
enum layer_names {
|
||||
_QWERTY = 0,
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
// Defines names for use in layer keycodes and the keymap
|
||||
enum layer_names {
|
||||
_QWERTY = 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue