diff options
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 { |