Skip to content

Commit

Permalink
DON'T USE THIS, IT BARELY HAS BEEN TESTED.
Browse files Browse the repository at this point in the history
  • Loading branch information
petejohanson committed Nov 18, 2024
1 parent ffa485c commit f7839ba
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions app/boards/shields/sofle/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ endif # LVGL

if ZMK_RGB_UNDERGLOW

config WS2812_STRIP
default y
# config WS2812_STRIP
# default y
endif

endif
2 changes: 1 addition & 1 deletion app/boards/shields/splitkb_aurora_corne/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ config ZMK_SPLIT
default y

config ZMK_RGB_UNDERGLOW
select WS2812_STRIP
# select WS2812_STRIP
select SPI

config ZMK_DISPLAY
Expand Down
2 changes: 1 addition & 1 deletion app/boards/shields/splitkb_aurora_helix/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ config ZMK_SPLIT
default y

config ZMK_RGB_UNDERGLOW
select WS2812_STRIP
# select WS2812_STRIP
select SPI

if ZMK_DISPLAY
Expand Down
2 changes: 1 addition & 1 deletion app/boards/shields/splitkb_aurora_lily58/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ config ZMK_SPLIT
default y

config ZMK_RGB_UNDERGLOW
select WS2812_STRIP
# select WS2812_STRIP
select SPI

config ZMK_DISPLAY
Expand Down
2 changes: 1 addition & 1 deletion app/boards/shields/splitkb_aurora_sofle/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ config ZMK_SPLIT
default y

config ZMK_RGB_UNDERGLOW
select WS2812_STRIP
# select WS2812_STRIP
select SPI

if ZMK_DISPLAY
Expand Down
2 changes: 1 addition & 1 deletion app/boards/shields/splitkb_aurora_sweep/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ config ZMK_SPLIT
default y

config ZMK_RGB_UNDERGLOW
select WS2812_STRIP
# select WS2812_STRIP
select SPI

config ZMK_DISPLAY
Expand Down
2 changes: 1 addition & 1 deletion app/boards/shields/zmk_uno/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ config SHIELD_SSD1306_128X32
select ZMK_DISPLAY

config ZMK_RGB_UNDERGLOW
select WS2812_STRIP
# select WS2812_STRIP
select SPI

config ZMK_PM_SOFT_OFF
Expand Down
4 changes: 2 additions & 2 deletions app/src/behavior.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ const struct device *z_impl_behavior_get_binding(const char *name) {
}

STRUCT_SECTION_FOREACH(zmk_behavior_ref, item) {
if (z_device_is_ready(item->device) && item->device->name == name) {
if (device_is_ready(item->device) && item->device->name == name) {
return item->device;
}
}

STRUCT_SECTION_FOREACH(zmk_behavior_ref, item) {
if (z_device_is_ready(item->device) && strcmp(item->device->name, name) == 0) {
if (device_is_ready(item->device) && strcmp(item->device->name, name) == 0) {
return item->device;
}
}
Expand Down
4 changes: 2 additions & 2 deletions app/west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ manifest:
url-base: https://github.com/zmkfirmware
projects:
- name: zephyr
remote: zmkfirmware
revision: v3.5.0+zmk-fixes
remote: zephyr
revision: v3.7.0
clone-depth: 1
import:
name-blocklist:
Expand Down

0 comments on commit f7839ba

Please sign in to comment.