gondo updates

This commit is contained in:
stanrc85 2024-04-12 20:10:57 -04:00
parent 1d50993ae1
commit 194def1878
3 changed files with 15 additions and 10 deletions

View file

@ -20,11 +20,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BACKLIGHT_PWM_DRIVER PWMD3
#define BACKLIGHT_PWM_CHANNEL 4
#define BACKLIGHT_PAL_MODE 2
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
#define LOCKING_SUPPORT_ENABLE
/* Locking resynchronize hack */
#define LOCKING_RESYNC_ENABLE
#define WEAR_LEVELING_LOGICAL_SIZE 2048
#define WEAR_LEVELING_BACKING_SIZE 4096

View file

@ -15,6 +15,9 @@
"nkro": true,
"backlight": true
},
"build": {
"lto": true
},
"matrix_pins": {
"cols": ["C9" , "C8" , "C7" , "C6" , "B15", "B14", "B12", "B9" , "A15" , "C3" , "C2" , "C12" , "C1" , "B4" , "B3" , "D2" ],
"rows": ["A10", "A8" , "B13", "A2" , "A1" , "C10", "C11", "B5" , "C0" ]
@ -25,6 +28,17 @@
"levels": 20,
"breathing": true
},
"indicators": {
"caps_lock": "B1"
},
"eeprom": {
"driver" : "wear_leveling",
"wear_leveling": {
"driver": "embedded_flash",
"backing_size": 4096,
"logical_size": 2048
}
},
"processor": "STM32F401",
"bootloader": "stm32-dfu",
"layouts": {

View file

@ -1,2 +1 @@
# Enter lower-power sleep mode when on the ChibiOS idle thread
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
# This file intentionally left blank