Browse Source

Rename file layer_switch to action_layer

core
tmk 11 years ago
parent
commit
f903bcddbd
6 changed files with 7 additions and 7 deletions
  1. 1
    1
      common.mk
  2. 1
    1
      common/action.c
  3. 1
    1
      common/action_layer.c
  4. 2
    2
      common/action_layer.h
  5. 1
    1
      common/command.c
  6. 1
    1
      common/keymap.c

+ 1
- 1
common.mk View File

@@ -5,7 +5,7 @@ SRC += $(COMMON_DIR)/host.c \
$(COMMON_DIR)/action_tapping.c \
$(COMMON_DIR)/action_oneshot.c \
$(COMMON_DIR)/action_macro.c \
$(COMMON_DIR)/layer_switch.c \
$(COMMON_DIR)/action_layer.c \
$(COMMON_DIR)/keymap.c \
$(COMMON_DIR)/timer.c \
$(COMMON_DIR)/print.c \

+ 1
- 1
common/action.c View File

@@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "command.h"
#include "debug.h"
#include "led.h"
#include "layer_switch.h"
#include "action_layer.h"
#include "action_tapping.h"
#include "action_oneshot.h"
#include "action_macro.h"

common/layer_switch.c → common/action_layer.c View File

@@ -3,7 +3,7 @@
#include "action.h"
#include "debug.h"
#include "util.h"
#include "layer_switch.h"
#include "action_layer.h"


/*

common/layer_switch.h → common/action_layer.h View File

@@ -14,8 +14,8 @@ 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 <http://www.gnu.org/licenses/>.
*/
#ifndef LAYER_SWITCH_H
#define LAYER_SWITCH_H
#ifndef ACTION_LAYER_H
#define ACTION_LAYER_H

#include <stdint.h>
#include "keyboard.h"

+ 1
- 1
common/command.c View File

@@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "timer.h"
#include "keyboard.h"
#include "bootloader.h"
#include "layer_switch.h"
#include "action_layer.h"
#include "eeconfig.h"
#include "sleep_led.h"
#include "led.h"

+ 1
- 1
common/keymap.c View File

@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "keymap.h"
#include "report.h"
#include "keycode.h"
#include "layer_switch.h"
#include "action_layer.h"
#include "action.h"
#include "action_macro.h"
#include "debug.h"