Skip to content

Commit 04400f8

Browse files
committed
fix clang format
1 parent b7bf5be commit 04400f8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/arduino/Adafruit_USBH_Host.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ void Adafruit_USBH_Host::task(void) { tuh_task(); }
5353
// descriptor. Note: if report descriptor length > CFG_TUH_ENUMERATION_BUFSIZE,
5454
// it will be skipped therefore report_desc = NULL, desc_len = 0
5555
TU_ATTR_WEAK void tuh_hid_mount_cb(uint8_t dev_addr, uint8_t instance,
56-
uint8_t const *desc_report, uint16_t desc_len) {
56+
uint8_t const *desc_report,
57+
uint16_t desc_len) {
5758
(void)dev_addr;
5859
(void)instance;
5960
(void)desc_report;
@@ -68,7 +69,8 @@ TU_ATTR_WEAK void tuh_hid_umount_cb(uint8_t dev_addr, uint8_t instance) {
6869

6970
// Invoked when received report from device via interrupt endpoint
7071
TU_ATTR_WEAK void tuh_hid_report_received_cb(uint8_t dev_addr, uint8_t instance,
71-
uint8_t const *report, uint16_t len) {
72+
uint8_t const *report,
73+
uint16_t len) {
7274
(void)dev_addr;
7375
(void)instance;
7476
(void)report;

0 commit comments

Comments
 (0)