Remove FLIP_HALF layouts and move to data driven (#20588)

This commit is contained in:
Ryan 2023-04-30 01:51:45 +10:00 committed by GitHub
parent 03328ea7a8
commit 998a4d744e
Failed to generate hash of commit
54 changed files with 1920 additions and 2564 deletions

View file

@ -9,10 +9,13 @@
},
"processor": "atmega32u4",
"bootloader": "atmel-dfu",
"layout_aliases": {
"LAYOUT": "LAYOUT_ortho_1x1"
},
"layouts": {
"LAYOUT_ortho_1x1": {
"layout": [
{ "x": 0, "y": 0 }
{"matrix": [0, 0], "x": 0, "y": 0}
]
}
}

View file

@ -1,11 +0,0 @@
#pragma once
#include "quantum.h"
#define LAYOUT_ortho_1x1( \
k00 \
) { \
{ k00 } \
}
#define LAYOUT LAYOUT_ortho_1x1