Skip to content

Commit 4b9a629

Browse files
authored
Merge pull request #510 from adafruit/fix-esp32-max3421e
Fix esp32 max3421e
2 parents 76a551b + 55a0283 commit 4b9a629

File tree

42 files changed

+46
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+46
-7
lines changed

.github/workflows/githubci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
matrix:
4949
arduino-platform:
5050
# ESP32 ci use dev json
51+
- 'feather_esp32_v2'
5152
- 'feather_esp32s2'
5253
- 'feather_esp32s3'
5354
- 'esp32p4'

examples/CDC/cdc_multi/.skip.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
feather_esp32_v2
12
feather_esp32s2
23
feather_esp32s3
34
funhouse

examples/CDC/no_serial/.pico_rp2040_tinyusb_host.test.skip

Whitespace-only changes.

examples/CDC/no_serial/.skip.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
feather_esp32_v2
2+
pico_rp2040_tinyusb_host

examples/CDC/serial_echo/.pico_rp2040_tinyusb_host.test.skip

Whitespace-only changes.

examples/CDC/serial_echo/.skip.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
feather_esp32_v2
2+
pico_rp2040_tinyusb_host

examples/Composite/mouse_ramdisk/.pico_rp2040_tinyusb_host.test.skip

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
feather_esp32_v2
2+
pico_rp2040_tinyusb_host
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
feather_esp32_v2
12
pico_rp2040_tinyusb_host
23
CH32V20x_EVT

examples/DualRole/HID/hid_mouse_log_filter/hid_mouse_log_filter.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ uint8_t const desc_hid_report[] = {
4242
TUD_HID_REPORT_DESC_MOUSE()
4343
};
4444

45-
// USB HID object. For ESP32 these values cannot be changed after this declaration
46-
// desc report, desc len, protocol, interval, use out endpoint
45+
// USB HID object: desc report, desc len, protocol, interval, use out endpoint
4746
Adafruit_USBD_HID usb_hid(desc_hid_report, sizeof(desc_hid_report), HID_ITF_PROTOCOL_MOUSE, 2, false);
4847

4948
/* Adjustable parameters for the log_filter() method.

0 commit comments

Comments
 (0)