diff options
author | Álvaro A. Volpato <alvaro.volpato@usp.br> | 2021-09-13 18:01:23 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 07:01:23 +1000 |
commit | eee553337a02d64bb5acdeb0a2b13461637409df (patch) | |
tree | 04c8a7fc3fea16572f5cf273e4db94b59ccbaa78 /keyboards/mode/m65s/halconf.h | |
parent | ca626f59a7fda63b65bf2a8d907af754a9707767 (diff) |
Add initial support for M65S (#14027)
* Add initial support for M65S
* Remove LTO_ENABLE from rules.mk
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Removed defs in rules.mk, remove EEPROM debug code in m65s.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/mode/m65s/halconf.h')
-rw-r--r-- | keyboards/mode/m65s/halconf.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/keyboards/mode/m65s/halconf.h b/keyboards/mode/m65s/halconf.h new file mode 100644 index 0000000000..6c53f594c7 --- /dev/null +++ b/keyboards/mode/m65s/halconf.h @@ -0,0 +1,26 @@ +/* Copyright 2020 QMK + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +/* + * This file was auto-generated by: + * `qmk chibios-confmigrate -i keyboards/acheron/austin/halconf.h -r platforms/chibios/common/configs/halconf.h` + */ + +#pragma once + +#define HAL_USE_I2C TRUE + +#include_next <halconf.h> |