From 599e70147963150eff822aeaca9f203dcff8e902 Mon Sep 17 00:00:00 2001 From: Eric Tang Date: Sun, 6 Aug 2017 20:41:51 -0700 Subject: [PATCH] Rename current_keymap.* to keymaps.* --- right/src/config_parser/parse_keymap.c | 2 +- right/src/{current_keymap.c => keymaps.c} | 0 right/src/{current_keymap.h => keymaps.h} | 4 ++-- right/src/usb_report_updater.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename right/src/{current_keymap.c => keymaps.c} (100%) rename right/src/{current_keymap.h => keymaps.h} (72%) diff --git a/right/src/config_parser/parse_keymap.c b/right/src/config_parser/parse_keymap.c index 7bea9eb..b61516f 100644 --- a/right/src/config_parser/parse_keymap.c +++ b/right/src/config_parser/parse_keymap.c @@ -1,6 +1,6 @@ #include "config_parser/parse_keymap.h" #include "key_action.h" -#include "current_keymap.h" +#include "keymaps.h" #include "led_display.h" static parser_error_t parseNoneAction(key_action_t *keyAction, config_buffer_t *buffer) { diff --git a/right/src/current_keymap.c b/right/src/keymaps.c similarity index 100% rename from right/src/current_keymap.c rename to right/src/keymaps.c diff --git a/right/src/current_keymap.h b/right/src/keymaps.h similarity index 72% rename from right/src/current_keymap.h rename to right/src/keymaps.h index 513a682..3e644d6 100644 --- a/right/src/current_keymap.h +++ b/right/src/keymaps.h @@ -1,5 +1,5 @@ -#ifndef __CURRENT_KEYMAP_H__ -#define __CURRENT_KEYMAP_H__ +#ifndef __KEYMAPS_H__ +#define __KEYMAPS_H__ // Includes: diff --git a/right/src/usb_report_updater.c b/right/src/usb_report_updater.c index 00d7651..19a940f 100644 --- a/right/src/usb_report_updater.c +++ b/right/src/usb_report_updater.c @@ -3,7 +3,7 @@ #include "led_display.h" #include "layer.h" #include "usb_interfaces/usb_interface_mouse.h" -#include "current_keymap.h" +#include "keymaps.h" #include "test_states.h" #include "peripherals/test_led.h" #include "slave_drivers/is31fl3731_driver.h"