Skip to content

Commit c056b4e

Browse files
committed
remove references to different cores
1 parent 74a8f9c commit c056b4e

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

USB_SNES_Gamepad/Arduino_Feather_RP2040_USB_Host/snes_gamepad_simpletest/snes_gamepad_simpletest.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ void setup() {
5454
rp2040_configure_pio_usb();
5555

5656
// 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
5957
USBHost.begin(1);
6058
delay(3000);
6159
Serial.print("USB D+ Pin:");

USB_SNES_Gamepad/Arduino_Feather_RP2040_USB_Host/snes_gamepad_simpletest/usbh_helper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
#ifdef ARDUINO_ARCH_RP2040
8282
static void rp2040_configure_pio_usb(void) {
8383
//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");
8585

8686
#ifdef PIN_5V_EN
8787
pinMode(PIN_5V_EN, OUTPUT);

USB_SNES_Gamepad/Arduino_Metro_RP2350_USB_Host/snes_gamepad_simpletest/snes_gamepad_simpletest.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ void setup() {
5454
rp2040_configure_pio_usb();
5555

5656
// 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
5957
USBHost.begin(1);
6058
delay(3000);
6159
Serial.print("USB D+ Pin:");

USB_SNES_Gamepad/Arduino_Metro_RP2350_USB_Host/snes_gamepad_simpletest/usbh_helper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
#ifdef ARDUINO_ARCH_RP2040
8282
static void rp2040_configure_pio_usb(void) {
8383
//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");
8585

8686
#ifdef PIN_5V_EN
8787
pinMode(PIN_5V_EN, OUTPUT);

0 commit comments

Comments
 (0)