diff options
Diffstat (limited to 'keyboards/ferris')
-rw-r--r-- | keyboards/ferris/0_1/0_1.c | 17 | ||||
-rw-r--r-- | keyboards/ferris/0_1/matrix.c | 4 | ||||
-rw-r--r-- | keyboards/ferris/0_2/0_2.c | 17 | ||||
-rw-r--r-- | keyboards/ferris/0_2/matrix.c | 5 |
4 files changed, 6 insertions, 37 deletions
diff --git a/keyboards/ferris/0_1/0_1.c b/keyboards/ferris/0_1/0_1.c deleted file mode 100644 index dbdb0b4bdc..0000000000 --- a/keyboards/ferris/0_1/0_1.c +++ /dev/null @@ -1,17 +0,0 @@ -/* -Copyright 2020 Pierre Chevalier <pierrechevalier83@gmail.com> - -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/>. -*/ -#include "0_1.h" diff --git a/keyboards/ferris/0_1/matrix.c b/keyboards/ferris/0_1/matrix.c index 0dfb150b6c..154a275d7a 100644 --- a/keyboards/ferris/0_1/matrix.c +++ b/keyboards/ferris/0_1/matrix.c @@ -23,7 +23,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. * to repeating that information all over the place. */ -#include QMK_KEYBOARD_H +#include "matrix.h" +#include "debug.h" +#include "wait.h" #include "i2c_master.h" extern i2c_status_t mcp23017_status; diff --git a/keyboards/ferris/0_2/0_2.c b/keyboards/ferris/0_2/0_2.c deleted file mode 100644 index 519961dd38..0000000000 --- a/keyboards/ferris/0_2/0_2.c +++ /dev/null @@ -1,17 +0,0 @@ -/* -Copyright 2020 Pierre Chevalier <pierrechevalier83@gmail.com> - -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/>. -*/ -#include "0_2.h" diff --git a/keyboards/ferris/0_2/matrix.c b/keyboards/ferris/0_2/matrix.c index ff0e66d65c..af4b045eb8 100644 --- a/keyboards/ferris/0_2/matrix.c +++ b/keyboards/ferris/0_2/matrix.c @@ -23,9 +23,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. * to repeating that information all over the place. */ -#include QMK_KEYBOARD_H +#include "matrix.h" +#include "debug.h" +#include "wait.h" #include "i2c_master.h" -#include <print.h> extern i2c_status_t mcp23017_status; #define MCP23017_I2C_TIMEOUT 1000 |