summaryrefslogtreecommitdiff
path: root/keyboards/dc01/numpad/numpad.c
diff options
context:
space:
mode:
authoryiancar <yiangosyiangou@cytanet.com.cy>2021-02-16 03:36:58 +0200
committerGitHub <noreply@github.com>2021-02-15 20:36:58 -0500
commit3fed8bced718e24e414c0d5736554d7988235b20 (patch)
tree51de9da8f0e01109d9e434fae315a94d6930c142 /keyboards/dc01/numpad/numpad.c
parentfa740f81298dc0965970a4dc7b0b67285bd1985c (diff)
Dc01 fixes (#11843)
* dc01-fixes * dc01-fixes * Cleanup and add VIA * Updated JSONs * fix
Diffstat (limited to 'keyboards/dc01/numpad/numpad.c')
-rw-r--r--keyboards/dc01/numpad/numpad.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/keyboards/dc01/numpad/numpad.c b/keyboards/dc01/numpad/numpad.c
index 04d0a33afe..2599f6320a 100644
--- a/keyboards/dc01/numpad/numpad.c
+++ b/keyboards/dc01/numpad/numpad.c
@@ -14,30 +14,3 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "numpad.h"
-
-void matrix_init_kb(void) {
- // put your keyboard start-up code here
- // runs once when the firmware starts up
-
- matrix_init_user();
-}
-
-void matrix_scan_kb(void) {
- // put your looping keyboard code here
- // runs every cycle (a lot)
-
- matrix_scan_user();
-}
-
-bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
- // put your per-action keyboard code here
- // runs for every action, just before processing by the firmware
-
- return process_record_user(keycode, record);
-}
-
-void led_set_kb(uint8_t usb_led) {
- // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
-
- led_set_user(usb_led);
-}