i seem to be running into an issue while compiling, as far as i can tell my syntax is ok but obviously SOMETHING is wrong LOL
twenny.dtsi -
/ {
chosen {
zmk,physical-layout = &physical_layout0;
};
kscan0: kscan0 {
compatible = "zmk,kscan-gpio-direct";
wakeup-source;
input-gpios
= <&seeeduino_xiao_ble 0 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
, <&seeeduino_xiao_ble 2 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
, <&seeeduino_xiao_ble 3 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
, <&seeeduino_xiao_ble 4 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
, <&seeeduino_xiao_ble 5 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
, <&seeeduino_xiao_ble 6 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
, <&seeeduino_xiao_ble 7 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
, <&seeeduino_xiao_ble 8 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
, <&seeeduino_xiao_ble 9 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
, <&seeeduino_xiao_ble 10 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>
;
};
default_transform: keymap_transform0 {
compatible = "zmk,matrix_transform";
columns = <4>;
rows = <4>;
map = <
RC(0,3) RC(0,2) RC(0,0) RC(0,11) RC(0,13) RC(0,21)
RC(0,10) RC(0,6) RC(0,5) RC(0,4) RC(0,20) RC(0,19) RC(0,18) RC(0,14)
RC(0,8) RC(0,9) RC(0,l5) RC(0,16)
RC(0,7) RC(0,17)
>;
};
};```
something in here is refusing to compile, i'm getting
```devicetree error: /__w/zmk-config/zmk-config/boards/shields/twenny/twenny.dtsi:26 (column 3): parse error: expected number or parenthesized expression```
although afaik the rowand col count are inaccurate because of the way it compiles
git repo for just in case:
https://github.com/turnisaa-sgtworms/zmk-config