Migrate dip switch config to info.json - keychron (#23037)

This commit is contained in:
Joel Challis 2024-02-09 06:56:13 +00:00 committed by GitHub
parent e7b84e1cf6
commit 137938b67a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
87 changed files with 117 additions and 466 deletions

View file

@ -29,12 +29,6 @@
#define SNLED27351_CURRENT_TUNE \
{ 0xD0, 0xD0, 0x60, 0xD0, 0xD0, 0x60, 0xD0, 0xD0, 0x60, 0xD0, 0xD0, 0x60 }
/* DIP switch */
#define DIP_SWITCH_MATRIX_GRID { {4,4} }
/* Disable DIP switch in matrix data */
#define MATRIX_MASKED
/* turn off effects when suspended */
#define RGB_MATRIX_SLEEP

View file

@ -0,0 +1,5 @@
{
"dip_switch": {
"matrix_grid": [ [4, 4] ]
}
}

View file

@ -16,14 +16,6 @@
#include "quantum.h"
const matrix_row_t matrix_mask[] = {
0b11111111111111,
0b11111111111111,
0b11111111111111,
0b11111111111111,
0b11111111101111,
};
#ifdef DIP_SWITCH_ENABLE
bool dip_switch_update_kb(uint8_t index, bool active) {