Browse Source

stm32: move features to info.json

pull/20108/head
9R 9 months ago
parent
commit
9e579dcae8
4 changed files with 26 additions and 19 deletions
  1. +0
    -9
      keyboards/handwired/replicazeron/config.h
  2. +0
    -1
      keyboards/handwired/replicazeron/stm32f103/config.h
  3. +25
    -3
      keyboards/handwired/replicazeron/stm32f103/info.json
  4. +1
    -6
      keyboards/handwired/replicazeron/stm32f103/rules.mk

+ 0
- 9
keyboards/handwired/replicazeron/config.h View File

@ -29,12 +29,3 @@
/* Locking resynchronize hack */
#define LOCKING_RESYNC_ENABLE
/* RGB Config */
#define RGBLED_NUM 6
#define RGBLIGHT_EFFECT_BREATHING
#define RGBLIGHT_EFFECT_KNIGHT
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
#define RGBLIGHT_EFFECT_RGB_TEST
#define RGBLIGHT_EFFECT_TWINKLE

+ 0
- 1
keyboards/handwired/replicazeron/stm32f103/config.h View File

@ -27,4 +27,3 @@
#define ANALOG_AXIS_PIN_X B0
#define ANALOG_AXIS_PIN_Y B1
#define WS2812_DI_PIN B14

+ 25
- 3
keyboards/handwired/replicazeron/stm32f103/info.json View File

@ -1,10 +1,32 @@
{
"usb": {
"device_version": "0.0.2"
"development_board": "bluepill",
"features": {
"bootmagic": true,
"console": true,
"extrakey": true,
"mousekey": true,
"nkro": true,
"rgblight": true
},
"matrix_pins": {
"cols": ["A7", "A6", "A5", "A4", "B4"],
"rows": ["B15", "A8", "A9", "A10", "A15", "B3"]
},
"development_board": "bluepill",
"rgblight": {
"led_count": 6
"animations": {
"breathing": true,
"knight": true,
"rainbow_mood": true,
"rainbow_swirl": true,
"rgb_test": true,
"twinkle": true
}
},
"usb": {
"device_version": "0.0.2"
},
"ws2812": {
"pin": "B14"
}
}

+ 1
- 6
keyboards/handwired/replicazeron/stm32f103/rules.mk View File

@ -1,6 +1 @@
BOOTMAGIC_ENABLE = yes
CONSOLE_ENABLE = yes
EXTRAKEY_ENABLE = yes
MOUSEKEY_ENABLE = yes
NKRO_ENABLE = yes
RGBLIGHT_ENABLE = yes
# This file intentionally left blank

Loading…
Cancel
Save