Skip to content

Commit

Permalink
update tinyusb/cbor libraries, fixes idf 5.3.1/issue jocover#9
Browse files Browse the repository at this point in the history
  • Loading branch information
greenaddress committed Sep 23, 2024
1 parent 1fdcde3 commit f7a1867
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion main/device.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions main/idf_component.yml
Original file line number Diff line number Diff line change
@@ -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"
espressif/tinyusb: "~0.15.0~10"
espressif/esp_tinyusb: "~1.4.4"
espressif/cbor: "~0.6.0~1"
idf: "^5.0"

0 comments on commit f7a1867

Please sign in to comment.