Remove unused CORTEX_VTOR_INIT (#10053)
This commit is contained in:
@@ -1,4 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#define JOYSTICK_AXES_COUNT 2
|
||||
#define JOYSTICK_BUTTON_COUNT 1
|
||||
@@ -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
|
||||
};
|
||||
@@ -1 +0,0 @@
|
||||
JOYSTICK_ENABLE = yes
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user