Browse Source

Fixes for loading without encoder drivers.

* Build fixes.
xmkb
Pete Johanson 4 years ago
parent
commit
c34472bf3f
  1. 13
      app/boards/shields/kyria/Kconfig.defconfig
  2. 3
      app/src/sensors.c

13
app/boards/shields/kyria/Kconfig.defconfig

@ -18,18 +18,7 @@ if SHIELD_KYRIA_LEFT || SHIELD_KYRIA_RIGHT @@ -18,18 +18,7 @@ if SHIELD_KYRIA_LEFT || SHIELD_KYRIA_RIGHT
config ZMK_SPLIT
default y
config EC11
default y
if EC11
choice EC11_TRIGGER
default EC11_TRIGGER_GLOBAL_THREAD
endchoice
endif
if ZMK_DISPLAY
config I2C

3
app/src/sensors.c

@ -60,7 +60,8 @@ static void zmk_sensors_init_item(const char *node, u8_t i, u8_t abs_i) @@ -60,7 +60,8 @@ static void zmk_sensors_init_item(const char *node, u8_t i, u8_t abs_i)
sensors[i].sensor_number = abs_i;
if (!sensors[i].dev) {
LOG_ERR("Failed to find device for %s", node);
LOG_WRN("Failed to find device for %s", node);
return;
}
sensor_trigger_set(sensors[i].dev, &sensors[i].trigger, zmk_sensors_trigger_handler);

Loading…
Cancel
Save