From 20d1ba1b4ddf861faef758fa783e7b02050bc900 Mon Sep 17 00:00:00 2001 From: Felix Jen Date: Fri, 28 Apr 2023 00:31:51 -0500 Subject: [PATCH] misc fixes --- keyboards/keebfront/vanguard65/info.json | 1 + keyboards/keebfront/vanguard65/vanguard65.h | 32 --------------------- 2 files changed, 1 insertion(+), 32 deletions(-) delete mode 100644 keyboards/keebfront/vanguard65/vanguard65.h diff --git a/keyboards/keebfront/vanguard65/info.json b/keyboards/keebfront/vanguard65/info.json index 07f74eb98a9..ef23ad223bc 100644 --- a/keyboards/keebfront/vanguard65/info.json +++ b/keyboards/keebfront/vanguard65/info.json @@ -10,6 +10,7 @@ }, "processor": "atmega32u4", "bootloader": "atmel-dfu", + "diode_direction": "COL2ROW", "matrix_pins": { "cols": ["F0", "B1", "B2", "B3", "B7", "D0", "D1", "D2", "D3", "D5", "D7", "B4", "B5", "B6", "C6"], "rows": ["F4", "F1", "F7", "F6", "F5"] diff --git a/keyboards/keebfront/vanguard65/vanguard65.h b/keyboards/keebfront/vanguard65/vanguard65.h deleted file mode 100644 index e8703b31434..00000000000 --- a/keyboards/keebfront/vanguard65/vanguard65.h +++ /dev/null @@ -1,32 +0,0 @@ -/* -Copyright 2022 -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" - -/* Vanguard65 Keymap Definitions */ -#define LAYOUT( \ - K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \ - K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \ - K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E, \ - K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \ - K40, K41, K42, K46, K4A, K4B, K4C, K4D, K4E \ -) { \ - { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \ - { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \ - { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E }, \ - { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \ - { K40, K41, K42, KC_NO, KC_NO, KC_NO, K46, KC_NO, KC_NO, KC_NO, K4A, K4B, K4C, K4D, K4E } \ -}