summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/magicforce61/config.h
diff options
context:
space:
mode:
authornoroadsleft <18669334+noroadsleft@users.noreply.github.com>2019-03-21 14:06:27 +0100
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-03-21 14:06:27 +0100
commitdfe02441bb96c17357a0471b8dde74b51d3081d3 (patch)
tree9e8523f512c21a80c548b737da323764b0f1e9bd /keyboards/handwired/magicforce61/config.h
parent6e4edbd15700a54409cb86f3cc2b34e174138b46 (diff)
downloadqmk_firmware-dfe02441bb96c17357a0471b8dde74b51d3081d3.tar.gz
qmk_firmware-dfe02441bb96c17357a0471b8dde74b51d3081d3.tar.xz
handwired/magicforce61 Refactor (#5459)
* handwired/magicforce61: refactor Renamed layout macro KEYMAP to LAYOUT. Keymap now uses #include QMK_KEYBOARD_H. Refactored the default keymap to use non-auto-prepended keycodes per QMK standard. Deleted deprecated action_get_macro block (was unused). * handwired/magicforce61: Configurator support * handwired/magicforce61: readme cleanup Restructured the readme to be more similar to current QMK template. * handwired/magicforce61: replace missing image in readme Replaced the missing wiring image (error 404) with a table. * handwired/magicforce61: rename readme to lowercase * Convert config.h to #pragma once include guard
Diffstat (limited to 'keyboards/handwired/magicforce61/config.h')
-rw-r--r--keyboards/handwired/magicforce61/config.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/keyboards/handwired/magicforce61/config.h b/keyboards/handwired/magicforce61/config.h
index c6c689ab6..3dc74f83e 100644
--- a/keyboards/handwired/magicforce61/config.h
+++ b/keyboards/handwired/magicforce61/config.h
@@ -15,8 +15,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef CONFIG_H
-#define CONFIG_H
+#pragma once
#include "config_common.h"
@@ -43,7 +42,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#define MATRIX_ROW_PINS { D0, D1, D2, D3, D4 }
-#define MATRIX_COL_PINS { B5, B4, B3, B2, B1, B0, E7, E6, F0, F1, F2, F3, F4, F5 }
+#define MATRIX_COL_PINS { B5, B4, B3, B2, B1, B0, E7, E6, F0, F1, F2, F3, F4, F5 }
#define UNUSED_PINS
/* COL2ROW or ROW2COL */
@@ -152,5 +151,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//#define NO_ACTION_ONESHOT
//#define NO_ACTION_MACRO
//#define NO_ACTION_FUNCTION
-
-#endif