File tree Expand file tree Collapse file tree 4 files changed +2
-6
lines changed
Arduino_Feather_RP2040_USB_Host/snes_gamepad_simpletest
Arduino_Metro_RP2350_USB_Host/snes_gamepad_simpletest Expand file tree Collapse file tree 4 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -54,8 +54,6 @@ void setup() {
54
54
rp2040_configure_pio_usb ();
55
55
56
56
// run host stack on controller (rhport) 1
57
- // Note: For rp2040 pico-pio-usb, calling USBHost.begin() on core1 will have most of the
58
- // host bit-banging processing works done in core1 to free up core0 for other works
59
57
USBHost.begin (1 );
60
58
delay (3000 );
61
59
Serial.print (" USB D+ Pin:" );
Original file line number Diff line number Diff line change 81
81
#ifdef ARDUINO_ARCH_RP2040
82
82
static void rp2040_configure_pio_usb (void ) {
83
83
//while ( !Serial ) delay(10); // wait for native usb
84
- Serial .println ("Core1 setup to run TinyUSB host with pio-usb" );
84
+ Serial .println ("Setup to run TinyUSB host with pio-usb" );
85
85
86
86
#ifdef PIN_5V_EN
87
87
pinMode (PIN_5V_EN , OUTPUT );
Original file line number Diff line number Diff line change @@ -54,8 +54,6 @@ void setup() {
54
54
rp2040_configure_pio_usb ();
55
55
56
56
// run host stack on controller (rhport) 1
57
- // Note: For rp2040 pico-pio-usb, calling USBHost.begin() on core1 will have most of the
58
- // host bit-banging processing works done in core1 to free up core0 for other works
59
57
USBHost.begin (1 );
60
58
delay (3000 );
61
59
Serial.print (" USB D+ Pin:" );
Original file line number Diff line number Diff line change 81
81
#ifdef ARDUINO_ARCH_RP2040
82
82
static void rp2040_configure_pio_usb (void ) {
83
83
//while ( !Serial ) delay(10); // wait for native usb
84
- Serial .println ("Core1 setup to run TinyUSB host with pio-usb" );
84
+ Serial .println ("Setup to run TinyUSB host with pio-usb" );
85
85
86
86
#ifdef PIN_5V_EN
87
87
pinMode (PIN_5V_EN , OUTPUT );
You can’t perform that action at this time.
0 commit comments