fix up lets_split keymaps

This commit is contained in:
Jack Humbert 2017-11-14 17:37:57 -05:00
parent 85172f4f85
commit 4ad0bbd672
11 changed files with 10 additions and 26 deletions

View File

@ -21,14 +21,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "config_common.h"
#ifdef SUBPROJECT_rev1
#include "rev1/config.h"
#endif
#ifdef SUBPROJECT_rev2
#include "rev2/config.h"
#endif
#ifdef SUBPROJECT_sockets
#include "sockets/config.h"
#endif
#endif

View File

@ -1,3 +0,0 @@
ifndef QUANTUM_DIR
include ../../../../Makefile
endif

View File

@ -103,7 +103,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
};
#ifdef AUDIO_ENABLE
float tone_qwertz[][2] = SONG(QWERTZ_SOUND);
float tone_qwertz[][2] = SONG(QWERTY_SOUND);
float tone_dvorak[][2] = SONG(DVORAK_SOUND);
float tone_colemak[][2] = SONG(COLEMAK_SOUND);
#endif

View File

@ -1,3 +0,0 @@
ifndef QUANTUM_DIR
include ../../../../Makefile
endif

View File

@ -3,13 +3,11 @@
#include "quantum.h"
#include QMK_KEYBOARD_H
#ifdef KEYBOARD_lets_split_rev1
#include "rev1.h"
#elif KEYBOARD_lets_split_rev2
#include "rev2.h"
#else
#elif KEYBOARD_lets_split_sockets
#include "sockets.h"
#endif

View File

@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef REV1_CONFIG_H
#define REV1_CONFIG_H
#include "../config.h"
#include "config_common.h"
/* USB Device descriptor parameter */
#define VENDOR_ID 0xFEED

View File

@ -1,7 +1,7 @@
#ifndef REV1_H
#define REV1_H
#include "../lets_split.h"
#include "lets_split.h"
//void promicro_bootloader_jmp(bool program);
#include "quantum.h"

View File

@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef REV2_CONFIG_H
#define REV2_CONFIG_H
#include "../config.h"
#include "config_common.h"
/* USB Device descriptor parameter */
#define VENDOR_ID 0xFEED

View File

@ -1,7 +1,7 @@
#ifndef REV2_H
#define REV2_H
#include "../lets_split.h"
#include "lets_split.h"
//void promicro_bootloader_jmp(bool program);
#include "quantum.h"

View File

@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef SOCKETS_CONFIG_H
#define SOCKETS_CONFIG_H
#include "../config.h"
#include "config_common.h"
/* USB Device descriptor parameter */
#define VENDOR_ID 0xBEE5

View File

@ -1,7 +1,7 @@
#ifndef REV2_H
#define REV2_H
#include "../lets_split.h"
#include "lets_split.h"
//void promicro_bootloader_jmp(bool program);
#include "quantum.h"
@ -57,4 +57,6 @@
}
#endif
#define LAYOUT_ortho_4x12 KEYMAP
#endif