From 37b5ead17d55d893d8639acd402cb4907ff4cc2c Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Thu, 19 Aug 2021 21:26:37 -0700 Subject: [Keyboard] Fix space_space rev1 keyboard files (#14087) --- keyboards/space_space/rev1/rev1.c | 17 ++++++++++++ keyboards/space_space/rev1/rev1.h | 45 ++++++++++++++++++++++++++++++++ keyboards/space_space/rev1/space_space.c | 17 ------------ keyboards/space_space/rev1/space_space.h | 45 -------------------------------- 4 files changed, 62 insertions(+), 62 deletions(-) create mode 100644 keyboards/space_space/rev1/rev1.c create mode 100644 keyboards/space_space/rev1/rev1.h delete mode 100644 keyboards/space_space/rev1/space_space.c delete mode 100644 keyboards/space_space/rev1/space_space.h (limited to 'keyboards') diff --git a/keyboards/space_space/rev1/rev1.c b/keyboards/space_space/rev1/rev1.c new file mode 100644 index 0000000000..e639552cfb --- /dev/null +++ b/keyboards/space_space/rev1/rev1.c @@ -0,0 +1,17 @@ + +/* Copyright 2020 qpockets + * + * 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 . + */ +#include "rev1.h" diff --git a/keyboards/space_space/rev1/rev1.h b/keyboards/space_space/rev1/rev1.h new file mode 100644 index 0000000000..e56068ec42 --- /dev/null +++ b/keyboards/space_space/rev1/rev1.h @@ -0,0 +1,45 @@ +/* Copyright 2020 qpockets + * + * 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 . + */ + +#pragma once + +#include "quantum.h" + +#define XXX KC_NO + +#define LAYOUT_default( \ + K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K50, \ + K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K51, \ + K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K52, \ + K32, K33, K34, K36, K37, K38 \ +) { \ + {K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K50}, \ + {K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K51}, \ + {K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K52}, \ + {XXX, XXX, K32, K33, K34, XXX, K36, K37, K38, XXX, XXX} \ +} + +#define LAYOUT_big_space( \ + K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K50, \ + K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K51, \ + K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K52, \ + K32, K35, K38 \ +) { \ + {K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K50}, \ + {K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K51}, \ + {K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K52}, \ + {XXX, XXX, K32, XXX, XXX, K35, XXX, XXX, K38, XXX, XXX} \ +} diff --git a/keyboards/space_space/rev1/space_space.c b/keyboards/space_space/rev1/space_space.c deleted file mode 100644 index 5fb853a018..0000000000 --- a/keyboards/space_space/rev1/space_space.c +++ /dev/null @@ -1,17 +0,0 @@ - -/* Copyright 2020 qpockets - * - * 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 . - */ -#include "space_space.h" diff --git a/keyboards/space_space/rev1/space_space.h b/keyboards/space_space/rev1/space_space.h deleted file mode 100644 index e56068ec42..0000000000 --- a/keyboards/space_space/rev1/space_space.h +++ /dev/null @@ -1,45 +0,0 @@ -/* Copyright 2020 qpockets - * - * 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 . - */ - -#pragma once - -#include "quantum.h" - -#define XXX KC_NO - -#define LAYOUT_default( \ - K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K50, \ - K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K51, \ - K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K52, \ - K32, K33, K34, K36, K37, K38 \ -) { \ - {K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K50}, \ - {K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K51}, \ - {K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K52}, \ - {XXX, XXX, K32, K33, K34, XXX, K36, K37, K38, XXX, XXX} \ -} - -#define LAYOUT_big_space( \ - K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K50, \ - K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K51, \ - K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K52, \ - K32, K35, K38 \ -) { \ - {K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K50}, \ - {K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K51}, \ - {K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K52}, \ - {XXX, XXX, K32, XXX, XXX, K35, XXX, XXX, K38, XXX, XXX} \ -} -- cgit v1.2.3