summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-08-18 13:02:01 +1000
committerDrashna Jael're <drashna@live.com>2020-09-30 03:28:45 -0700
commit90f90bd9a9e25c42f4773a1e3f824f0c73bf0cee (patch)
treea0621a4f38fdeb4ab1dceb4019398549d77b0577
parent222fbc1cbad3b8730fb2597e2f96caa62426c685 (diff)
Remove unused CORTEX_VTOR_INIT (#10053)
-rw-r--r--keyboards/handwired/onekey/keymaps/joystick/config.h4
-rw-r--r--keyboards/handwired/onekey/keymaps/joystick/keymap.c26
-rw-r--r--keyboards/handwired/onekey/keymaps/joystick/rules.mk1
-rw-r--r--platforms/chibios/ld/STM32F103x8_stm32duino_bootloader.ld3
4 files changed, 0 insertions, 34 deletions
diff --git a/keyboards/handwired/onekey/keymaps/joystick/config.h b/keyboards/handwired/onekey/keymaps/joystick/config.h
deleted file mode 100644
index ac09aa7cfb..0000000000
--- a/keyboards/handwired/onekey/keymaps/joystick/config.h
+++ /dev/null
@@ -1,4 +0,0 @@
-#pragma once
-
-#define JOYSTICK_AXES_COUNT 2
-#define JOYSTICK_BUTTON_COUNT 1
diff --git a/keyboards/handwired/onekey/keymaps/joystick/keymap.c b/keyboards/handwired/onekey/keymaps/joystick/keymap.c
deleted file mode 100644
index f427b9d77d..0000000000
--- a/keyboards/handwired/onekey/keymaps/joystick/keymap.c
+++ /dev/null
@@ -1,26 +0,0 @@
-#include QMK_KEYBOARD_H
-
-#include "joystick.h"
-
-#ifndef ADC_PIN
-# define ADC_PIN F6
-#endif
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- LAYOUT_ortho_1x1(JS_BUTTON0)
-};
-
-void matrix_scan_user() {
- int16_t val = (((uint32_t)timer_read() % 5000 - 2500) * 255) / 5000;
-
- if (val != joystick_status.axes[1]) {
- joystick_status.axes[1] = val;
- joystick_status.status |= JS_UPDATED;
- }
-}
-
-// Joystick config
-joystick_config_t joystick_axes[JOYSTICK_AXES_COUNT] = {
- [0] = JOYSTICK_AXIS_IN(ADC_PIN, 0, 512, 1023),
- [1] = JOYSTICK_AXIS_VIRTUAL
-};
diff --git a/keyboards/handwired/onekey/keymaps/joystick/rules.mk b/keyboards/handwired/onekey/keymaps/joystick/rules.mk
deleted file mode 100644
index fbddbc6de1..0000000000
--- a/keyboards/handwired/onekey/keymaps/joystick/rules.mk
+++ /dev/null
@@ -1 +0,0 @@
-JOYSTICK_ENABLE = yes
diff --git a/platforms/chibios/ld/STM32F103x8_stm32duino_bootloader.ld b/platforms/chibios/ld/STM32F103x8_stm32duino_bootloader.ld
index d0688ef601..bb852422a3 100644
--- a/platforms/chibios/ld/STM32F103x8_stm32duino_bootloader.ld
+++ b/platforms/chibios/ld/STM32F103x8_stm32duino_bootloader.ld
@@ -16,9 +16,6 @@
/*
* ST32F103xB memory setup for use with the maplemini bootloader.
- * You will have to
- * #define CORTEX_VTOR_INIT 0x5000
- * in your projects chconf.h
*/
MEMORY
{