From dff329ea420565da845d5ed111636aad6a4b64c9 Mon Sep 17 00:00:00 2001 From: dfnr2 Date: Wed, 13 May 2020 15:53:22 -0500 Subject: [PATCH] Delete asdf_keymap_defs.h Not a source file. This file is copied from keymaps directory during build. --- firmware/asdf/src/asdf_keymap_defs.h | 72 ---------------------------- 1 file changed, 72 deletions(-) delete mode 100644 firmware/asdf/src/asdf_keymap_defs.h diff --git a/firmware/asdf/src/asdf_keymap_defs.h b/firmware/asdf/src/asdf_keymap_defs.h deleted file mode 100644 index 04c40f8..0000000 --- a/firmware/asdf/src/asdf_keymap_defs.h +++ /dev/null @@ -1,72 +0,0 @@ -// -*- mode: C; tab-width: 4 ; indent-tabs-mode: nil -*- -// -// Unfified Keyboard Project -// ASDF keyboard firmware -// -// asdf_keymap_defs.h -// -// gathers up all the keymap definitions to be included in the firmware. -// -// Copyright 2019 David Fenyes -// -// 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 3 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 . - -// While there is nothing preventing a standard keyboard from having both a -// "Shift Lock" key and a "Caps Lock" key, usually only one will be present. For -// testing, both must be present to test their functionality. - -#if !defined(ASDF_KEYMAP_DEFS_H) -#define ASDF_KEYMAP_DEFS_H - -#include "asdf.h" -#include "asdf_arch.h" -#include "asdf_ascii.h" -#include "asdf_physical.h" -#include "asdf_virtual.h" -#include "asdf_modifiers.h" - -#include "Keymaps/asdf_keymap_defs_ascii.h" -#include "Keymaps/asdf_keymap_defs_apple2.h" -#include "Keymaps/asdf_keymap_defs_sol.h" - -#define ASDF_NUM_KEYMAPS \ - (ASDF_SOL_ALL_MAPS_COUNT) - -#define ASDF_KEYMAP_DEFS \ - { \ - ASDF_SOL_ALL_MAPS \ - } - -#define ASDF_KEYMAP_DECLARATIONS \ - ASDF_SOL_MAP_DECLARATIONS - -#define ASDF_KEYMAP_INITIALIZERS \ - { \ - ASDF_SOL_KEYMAP_INITIALIZER \ - } - -#define ASDF_KEYMAP_HOOK_INITIALIZERS \ - { \ - ASDF_SOL_KEYMAP_HOOK_INITIALIZER \ - } - -typedef asdf_keycode_t keycode_matrix_t[ASDF_NUM_ROWS][ASDF_NUM_COLS]; - -typedef asdf_keycode_t keycode_matrix_t[ASDF_NUM_ROWS][ASDF_NUM_COLS]; - - -#endif /* !defined (ASDF_KEYMAP_DEFS_H) */ - -//-------|---------|---------+---------+---------+---------+---------+---------+ -// Above line is 80 columns, and should display completely in the editor.