Skip to content

Commit

Permalink
Revert "Short term bodge for firmware size bloat (qmk#14144)"
Browse files Browse the repository at this point in the history
This reverts commit a8d6547.
  • Loading branch information
zvecr committed Aug 24, 2021
1 parent 2827a3c commit f08a6b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 21 deletions.
2 changes: 1 addition & 1 deletion quantum/action_tapping.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "action_tapping.h"
#include "keycode.h"
#include "timer.h"
#include "keymap_common.h"
#include "keymap.h"

#ifdef DEBUG_ACTION
# include "debug.h"
Expand Down
4 changes: 3 additions & 1 deletion quantum/keymap.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// #include "print.h"
#include "debug.h"
#include "keycode_config.h"
#include "keymap_common.h"

// ChibiOS uses RESET in its FlagStatus enumeration
// Therefore define it as QK_RESET here, to avoid name collision
Expand All @@ -47,6 +46,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

#include "quantum_keycodes.h"

// translates key to keycode
uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key);

// translates function id to action
uint16_t keymap_function_id_to_action(uint16_t function_id);

Expand Down
19 changes: 0 additions & 19 deletions quantum/keymap_common.h

This file was deleted.

0 comments on commit f08a6b9

Please sign in to comment.