From f7a1867612fb11ab85e02c0fa5afbd884791de97 Mon Sep 17 00:00:00 2001 From: Lawrence Nahum Date: Mon, 23 Sep 2024 16:40:07 +0200 Subject: [PATCH] update tinyusb/cbor libraries, fixes idf 5.3.1/issue #9 --- main/device.c | 2 +- main/idf_component.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/main/device.c b/main/device.c index 6608d82..a5d0a2e 100644 --- a/main/device.c +++ b/main/device.c @@ -325,7 +325,7 @@ void device_loop(uint8_t has_touch) CCID_Loop(); } -void tud_hid_report_complete_cb(uint8_t instance, uint8_t const *report, /*uint16_t*/ uint8_t len) +void tud_hid_report_complete_cb(uint8_t instance, uint8_t const *report, uint16_t len) { if (xSemaphoreTake(hid_tx_requested, 0) != pdTRUE) diff --git a/main/idf_component.yml b/main/idf_component.yml index bb947e8..93d4fd0 100644 --- a/main/idf_component.yml +++ b/main/idf_component.yml @@ -1,6 +1,6 @@ ## IDF Component Manager Manifest File dependencies: - espressif/tinyusb: "~0.14.3" - espressif/esp_tinyusb: "~1.4.2" - espressif/cbor: "~0.6.0" - idf: "^5.0" \ No newline at end of file + espressif/tinyusb: "~0.15.0~10" + espressif/esp_tinyusb: "~1.4.4" + espressif/cbor: "~0.6.0~1" + idf: "^5.0"