skip more examples
This commit is contained in:
parent
332b0c8e31
commit
55a0283b48
6 changed files with 6 additions and 7 deletions
|
|
@ -1,2 +1,3 @@
|
|||
feather_esp32_v2
|
||||
pico_rp2040_tinyusb_host
|
||||
CH32V20x_EVT
|
||||
|
|
|
|||
|
|
@ -42,8 +42,7 @@ uint8_t const desc_hid_report[] = {
|
|||
TUD_HID_REPORT_DESC_MOUSE()
|
||||
};
|
||||
|
||||
// USB HID object. For ESP32 these values cannot be changed after this declaration
|
||||
// desc report, desc len, protocol, interval, use out endpoint
|
||||
// USB HID object: desc report, desc len, protocol, interval, use out endpoint
|
||||
Adafruit_USBD_HID usb_hid(desc_hid_report, sizeof(desc_hid_report), HID_ITF_PROTOCOL_MOUSE, 2, false);
|
||||
|
||||
/* Adjustable parameters for the log_filter() method.
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
feather_esp32_v2
|
||||
pico_rp2040_tinyusb_host
|
||||
CH32V20x_EVT
|
||||
|
|
|
|||
|
|
@ -40,8 +40,7 @@ uint8_t const desc_hid_report[] = {
|
|||
TUD_HID_REPORT_DESC_MOUSE()
|
||||
};
|
||||
|
||||
// USB HID object. For ESP32 these values cannot be changed after this declaration
|
||||
// desc report, desc len, protocol, interval, use out endpoint
|
||||
// USB HID object: desc report, desc len, protocol, interval, use out endpoint
|
||||
Adafruit_USBD_HID usb_hid(desc_hid_report, sizeof(desc_hid_report), HID_ITF_PROTOCOL_MOUSE, 2, false);
|
||||
|
||||
//------------- Low pass filter with Butterworth -------------//
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
feather_esp32_v2
|
||||
pico_rp2040_tinyusb_host
|
||||
CH32V20x_EVT
|
||||
|
|
|
|||
|
|
@ -42,11 +42,9 @@ uint8_t const desc_hid_report[] = {
|
|||
TUD_HID_REPORT_DESC_KEYBOARD()
|
||||
};
|
||||
|
||||
// USB HID object. For ESP32 these values cannot be changed after this declaration
|
||||
// desc report, desc len, protocol, interval, use out endpoint
|
||||
// USB HID object: desc report, desc len, protocol, interval, use out endpoint
|
||||
Adafruit_USBD_HID usb_hid(desc_hid_report, sizeof(desc_hid_report), HID_ITF_PROTOCOL_KEYBOARD, 2, false);
|
||||
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
usb_hid.begin();
|
||||
|
|
|
|||
Loading…
Reference in a new issue