diff options
author | Drashna Jaelre <drashna@live.com> | 2019-03-22 14:48:29 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-04-05 14:58:42 -0700 |
commit | cb33643f0209202e5d195613ad685e3cdae4ef2d (patch) | |
tree | de7b43d5b5c7461a00d45129761d11c19fdae566 /keyboards/orthodox | |
parent | c9a2d9d1aa8bb5f257954ea0569f707c0ae758b0 (diff) | |
download | qmk_firmware-cb33643f0209202e5d195613ad685e3cdae4ef2d.tar.gz qmk_firmware-cb33643f0209202e5d195613ad685e3cdae4ef2d.zip |
Remove user keymap changes
Diffstat (limited to 'keyboards/orthodox')
-rw-r--r-- | keyboards/orthodox/keymaps/oscillope/config.h | 6 | ||||
-rw-r--r-- | keyboards/orthodox/keymaps/rfvizarra/config.h | 6 | ||||
-rw-r--r-- | keyboards/orthodox/keymaps/xyverz/config.h | 7 |
3 files changed, 16 insertions, 3 deletions
diff --git a/keyboards/orthodox/keymaps/oscillope/config.h b/keyboards/orthodox/keymaps/oscillope/config.h index edd5d74b77..3b1fd50007 100644 --- a/keyboards/orthodox/keymaps/oscillope/config.h +++ b/keyboards/orthodox/keymaps/oscillope/config.h @@ -19,8 +19,10 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#pragma once +#ifndef CONFIG_USER_H +#define CONFIG_USER_H +#include "config_common.h" /* Use I2C or Serial, not both */ @@ -35,3 +37,5 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define TAPPING_TERM 200 #define TAPPING_TOGGLE 3 + +#endif diff --git a/keyboards/orthodox/keymaps/rfvizarra/config.h b/keyboards/orthodox/keymaps/rfvizarra/config.h index 7254621808..7ac207f0d3 100644 --- a/keyboards/orthodox/keymaps/rfvizarra/config.h +++ b/keyboards/orthodox/keymaps/rfvizarra/config.h @@ -19,8 +19,10 @@ 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 CONFIG_USER_H +#define CONFIG_USER_H -#pragma once +#include "config_common.h" #ifdef AUDIO_ENABLE #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \ @@ -39,3 +41,5 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. // #define MASTER_LEFT // #define MASTER_RIGHT #define EE_HANDS + +#endif diff --git a/keyboards/orthodox/keymaps/xyverz/config.h b/keyboards/orthodox/keymaps/xyverz/config.h index 80d5dfd2ec..fc6d5d23b5 100644 --- a/keyboards/orthodox/keymaps/xyverz/config.h +++ b/keyboards/orthodox/keymaps/xyverz/config.h @@ -19,7 +19,10 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#pragma once +#ifndef CONFIG_USER_H +#define CONFIG_USER_H + +#include "../../config.h" /* Use I2C or Serial, not both */ @@ -31,3 +34,5 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define MASTER_LEFT // #define _MASTER_RIGHT // #define EE_HANDS + +#endif |