|
@@ -21,10 +21,6 @@ static matrix_row_t matrix_debouncing[MATRIX_COLS];
|
|
|
static bool debouncing = false;
|
|
static bool debouncing = false;
|
|
|
static uint16_t debouncing_time = 0;
|
|
static uint16_t debouncing_time = 0;
|
|
|
|
|
|
|
|
-static uint8_t encoder_state = 0;
|
|
|
|
|
-static int8_t encoder_value = 0;
|
|
|
|
|
-static int8_t encoder_LUT[] = { 0, -1, 1, 0, 1, 0, 0, -1, -1, 0, 0, 1, 0, 1, -1, 0 };
|
|
|
|
|
-
|
|
|
|
|
static bool dip_switch[4] = {0, 0, 0, 0};
|
|
static bool dip_switch[4] = {0, 0, 0, 0};
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
|
__attribute__ ((weak))
|
|
@@ -53,12 +49,6 @@ void matrix_init(void) {
|
|
|
palSetPadMode(GPIOA, 10, PAL_MODE_INPUT_PULLUP);
|
|
palSetPadMode(GPIOA, 10, PAL_MODE_INPUT_PULLUP);
|
|
|
palSetPadMode(GPIOB, 9, PAL_MODE_INPUT_PULLUP);
|
|
palSetPadMode(GPIOB, 9, PAL_MODE_INPUT_PULLUP);
|
|
|
|
|
|
|
|
- // encoder setup
|
|
|
|
|
- palSetPadMode(GPIOB, 12, PAL_MODE_INPUT_PULLUP);
|
|
|
|
|
- palSetPadMode(GPIOB, 13, PAL_MODE_INPUT_PULLUP);
|
|
|
|
|
-
|
|
|
|
|
- encoder_state = (palReadPad(GPIOB, 12) << 0) | (palReadPad(GPIOB, 13) << 1);
|
|
|
|
|
-
|
|
|
|
|
// actual matrix setup
|
|
// actual matrix setup
|
|
|
palSetPadMode(GPIOB, 11, PAL_MODE_OUTPUT_PUSHPULL);
|
|
palSetPadMode(GPIOB, 11, PAL_MODE_OUTPUT_PUSHPULL);
|
|
|
palSetPadMode(GPIOB, 10, PAL_MODE_OUTPUT_PUSHPULL);
|
|
palSetPadMode(GPIOB, 10, PAL_MODE_OUTPUT_PUSHPULL);
|
|
@@ -87,15 +77,8 @@ void matrix_init(void) {
|
|
|
__attribute__ ((weak))
|
|
__attribute__ ((weak))
|
|
|
void dip_update(uint8_t index, bool active) { }
|
|
void dip_update(uint8_t index, bool active) { }
|
|
|
|
|
|
|
|
-__attribute__ ((weak))
|
|
|
|
|
-void encoder_update(bool clockwise) { }
|
|
|
|
|
-
|
|
|
|
|
bool last_dip_switch[4] = {0};
|
|
bool last_dip_switch[4] = {0};
|
|
|
|
|
|
|
|
-#ifndef ENCODER_RESOLUTION
|
|
|
|
|
- #define ENCODER_RESOLUTION 4
|
|
|
|
|
-#endif
|
|
|
|
|
-
|
|
|
|
|
uint8_t matrix_scan(void) {
|
|
uint8_t matrix_scan(void) {
|
|
|
// dip switch
|
|
// dip switch
|
|
|
dip_switch[0] = !palReadPad(GPIOB, 14);
|
|
dip_switch[0] = !palReadPad(GPIOB, 14);
|
|
@@ -108,18 +91,6 @@ uint8_t matrix_scan(void) {
|
|
|
}
|
|
}
|
|
|
memcpy(last_dip_switch, dip_switch, sizeof(&dip_switch));
|
|
memcpy(last_dip_switch, dip_switch, sizeof(&dip_switch));
|
|
|
|
|
|
|
|
- // encoder on B12 and B13
|
|
|
|
|
- encoder_state <<= 2;
|
|
|
|
|
- encoder_state |= (palReadPad(GPIOB, 12) << 0) | (palReadPad(GPIOB, 13) << 1);
|
|
|
|
|
- encoder_value += encoder_LUT[encoder_state & 0xF];
|
|
|
|
|
- if (encoder_value >= ENCODER_RESOLUTION) {
|
|
|
|
|
- encoder_update(0);
|
|
|
|
|
- }
|
|
|
|
|
- if (encoder_value <= -ENCODER_RESOLUTION) { // direction is arbitrary here, but this clockwise
|
|
|
|
|
- encoder_update(1);
|
|
|
|
|
- }
|
|
|
|
|
- encoder_value %= ENCODER_RESOLUTION;
|
|
|
|
|
-
|
|
|
|
|
// actual matrix
|
|
// actual matrix
|
|
|
for (int col = 0; col < MATRIX_COLS; col++) {
|
|
for (int col = 0; col < MATRIX_COLS; col++) {
|
|
|
matrix_row_t data = 0;
|
|
matrix_row_t data = 0;
|