summaryrefslogtreecommitdiffstats
path: root/keyboard/mbed_onekey
diff options
context:
space:
mode:
authorErez Zukerman <ezuk@madmimi.com>2016-05-24 23:55:29 -0400
committerErez Zukerman <ezuk@madmimi.com>2016-05-24 23:55:29 -0400
commitd06e940a179b2e81563cf6123461cfcad35f9045 (patch)
tree58f4bbc22f51cba0c22a6a1ab09a499681f1f89e /keyboard/mbed_onekey
parent8bc69afc633d3e199e3ac0a5bf39e4d255f2ce4a (diff)
[Erez & Jack] Removes keyboards which are not active on qmk
Diffstat (limited to 'keyboard/mbed_onekey')
-rw-r--r--keyboard/mbed_onekey/Makefile33
-rw-r--r--keyboard/mbed_onekey/config.h7
-rw-r--r--keyboard/mbed_onekey/main.cpp33
3 files changed, 0 insertions, 73 deletions
diff --git a/keyboard/mbed_onekey/Makefile b/keyboard/mbed_onekey/Makefile
deleted file mode 100644
index b9c88fdd31..0000000000
--- a/keyboard/mbed_onekey/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-PROJECT = mbed_onekey
-
-TMK_DIR = ../../tmk_core
-MBED_DIR = $(TMK_DIR)/mbed-sdk
-
-#VPATH += $(MBED_DIR):$(TMK_DIR)
-vpath %.s .:$(MBED_DIR):$(TMK_DIR)
-vpath %.c .:$(MBED_DIR):$(TMK_DIR)
-vpath %.cpp .:$(MBED_DIR):$(TMK_DIR)
-
-OBJDIR = ./build
-
-OBJECTS = \
- $(OBJDIR)/./main.o
-
-CONFIG_H = config.h
-
-SYS_OBJECTS =
-
-INCLUDE_PATHS = -I.
-
-LIBRARY_PATHS =
-LIBRARIES =
-
-# Build Options
-# Comment out to disable
-#BOOTMAGIC_ENABLE = yes
-#MOUSEKEY_ENABLE = yes
-
-
-include $(TMK_DIR)/tool/mbed/mbed.mk
-include $(TMK_DIR)/tool/mbed/common.mk
-include $(TMK_DIR)/tool/mbed/gcc.mk
diff --git a/keyboard/mbed_onekey/config.h b/keyboard/mbed_onekey/config.h
deleted file mode 100644
index a3aadd0389..0000000000
--- a/keyboard/mbed_onekey/config.h
+++ /dev/null
@@ -1,7 +0,0 @@
-#ifndef CONFIG_H
-#define CONFIG_H
-
-#define MATRIX_ROWS 1
-#define MATRIX_COLS 1
-
-#endif
diff --git a/keyboard/mbed_onekey/main.cpp b/keyboard/mbed_onekey/main.cpp
deleted file mode 100644
index 71342e7ec3..0000000000
--- a/keyboard/mbed_onekey/main.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#include "mbed.h"
-#include "action.h"
-#include "keycode.h"
-#include "host.h"
-#include "mbed_driver.h"
-
-
-// Button and LEDs of LPC11U35 board
-DigitalIn isp(P0_1); // ISP button
-DigitalOut led_red(P0_20);
-DigitalOut led_green(P0_21);
-
-
-int main(void) {
- isp.mode(PullUp);
- led_red = 1;
- led_green = 0;
-
- host_set_driver(&mbed_driver);
-
- bool last_isp = isp;
- while (1) {
- if (last_isp == isp) continue;
- last_isp = isp;
- if (last_isp == 0) {
- led_red = 0; // on
- register_code(KC_A);
- } else {
- led_red = 1; // off
- unregister_code(KC_A);
- }
- }
-}