Fixup swiftrax/bumblebee (reduce firmware size) (#19834)
This commit is contained in:
parent
9a654e5728
commit
ef881364d4
|
@ -21,18 +21,18 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
|
||||||
if (!encoder_update_user(index, clockwise))
|
if (!encoder_update_user(index, clockwise))
|
||||||
return false;
|
return false;
|
||||||
if (clockwise)
|
if (clockwise)
|
||||||
tap_code16(KC_VOLU);
|
tap_code(KC_VOLU);
|
||||||
else
|
else
|
||||||
tap_code16(KC_VOLD);
|
tap_code(KC_VOLD);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialize all RGB indicators to 'off'
|
// Initialize all RGB indicators to 'off'
|
||||||
__attribute__((weak))
|
void keyboard_post_init_kb(void) {
|
||||||
void keyboard_post_init_user(void) {
|
|
||||||
rgblight_setrgb_at(0, 0, 0, 0); // [..., 0] = top LED
|
rgblight_setrgb_at(0, 0, 0, 0); // [..., 0] = top LED
|
||||||
rgblight_setrgb_at(0, 0, 0, 1); // [..., 1] = middle LED
|
rgblight_setrgb_at(0, 0, 0, 1); // [..., 1] = middle LED
|
||||||
rgblight_setrgb_at(0, 0, 0, 2); // [..., 2] = bottom LED
|
rgblight_setrgb_at(0, 0, 0, 2); // [..., 2] = bottom LED
|
||||||
|
keyboard_post_init_user();
|
||||||
}
|
}
|
||||||
|
|
||||||
// RGB Layer Indicators
|
// RGB Layer Indicators
|
||||||
|
|
|
@ -17,12 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "config_common.h"
|
|
||||||
|
|
||||||
/* key matrix size */
|
|
||||||
#define MATRIX_ROWS 8
|
|
||||||
#define MATRIX_COLS 8
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
// ROWS: Top to bottom, COLS: Left to right
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS { B0, B1, B2, B3, F4, F5, F6, F7 }
|
#define MATRIX_ROW_PINS { B0, B1, B2, B3, F4, F5, F6, F7 }
|
||||||
|
@ -34,9 +28,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
/* define if matrix has ghost */
|
/* define if matrix has ghost */
|
||||||
//#define MATRIX_HAS_GHOST
|
//#define MATRIX_HAS_GHOST
|
||||||
|
|
||||||
/* Set 0 if debouncing isn't needed */
|
|
||||||
#define DEBOUNCE 5
|
|
||||||
|
|
||||||
/* Encoder */
|
/* Encoder */
|
||||||
#define ENCODERS_PAD_A { C6 }
|
#define ENCODERS_PAD_A { C6 }
|
||||||
#define ENCODERS_PAD_B { B6 }
|
#define ENCODERS_PAD_B { B6 }
|
||||||
|
|
|
@ -2,3 +2,4 @@ VIA_ENABLE = yes
|
||||||
#HAPTIC_ENABLE += SOLENOID
|
#HAPTIC_ENABLE += SOLENOID
|
||||||
AUDIO_ENABLE = yes
|
AUDIO_ENABLE = yes
|
||||||
#either solenoid or audio not both can be enabled
|
#either solenoid or audio not both can be enabled
|
||||||
|
LTO_ENABLE = yes
|
||||||
|
|
Loading…
Reference in New Issue