Browse Source

Fixup build failures. (#19332)

Nick Brassel 3 years ago
parent
commit
64715084b2

+ 1 - 1
keyboards/converter/usb_usb/custom_matrix.cpp

@@ -234,6 +234,6 @@ extern "C" {
         if (kbd3.isReady()) kbd3.SetReport(0, 0, 2, 0, 1, &usb_led);
         if (kbd4.isReady()) kbd4.SetReport(0, 0, 2, 0, 1, &usb_led);
         led_set_user(usb_led);
-        led_update_kb((led_t)usb_led)
+        led_update_kb((led_t){.raw = usb_led});
     }
 }

+ 1 - 1
keyboards/dztech/tofu/jr/v1/config.h

@@ -17,7 +17,7 @@
 #pragma once
 #define I2C1_SDA_PIN GP2
 #define I2C1_SCL_PIN GP3
-#define I2C_DRIVER I2CD2
+#define I2C_DRIVER I2CD1
 
 #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
 #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U

+ 1 - 1
keyboards/exclusive/e6v2/oe/oe.c

@@ -9,7 +9,7 @@ bool led_update_kb(led_t led_state) {
     bool res = led_update_user(led_state);
     if(res) {
         writePin(B2, !led_state.caps_lock);
-        writePin(B6, led_state == 0);
+        writePin(B6, led_state.raw == 0);
     }
     return res;
 }

+ 1 - 1
keyboards/sirius/unigo66/custom_matrix.cpp

@@ -221,7 +221,7 @@ extern "C"
         kbd3.SetReport(0, 0, 2, 0, 1, &usb_led);
         kbd4.SetReport(0, 0, 2, 0, 1, &usb_led);
         led_set_user(usb_led);
-        led_update_kb((led_t)usb_led)
+        led_update_kb((led_t){.raw = usb_led});
     }
 
 };