Remove unused CORTEX_VTOR_INIT (#10053)

This commit is contained in:
Ryan
2020-08-18 13:02:01 +10:00
committed by Drashna Jael're
parent 222fbc1cba
commit 90f90bd9a9
4 changed files with 0 additions and 34 deletions

View File

@@ -1,4 +0,0 @@
#pragma once
#define JOYSTICK_AXES_COUNT 2
#define JOYSTICK_BUTTON_COUNT 1

View File

@@ -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
};

View File

@@ -1 +0,0 @@
JOYSTICK_ENABLE = yes

View File

@@ -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
{