Quantcast
Viewing all articles
Browse latest Browse all 4626

Other RP2040 boards • Custom Made RP2040 Board not uploading code from Arduino IDE

Hi there
this is for a school project. I have made a custom rp2040 PCB. The board is for a mouse.
When I try to upload the code with the Arduino IDE and the board from Earle Pillhower, there is just no COM Port showing up. I can see it as a drive and upload to that, but after, just nothing happens. The board disconnects and reconnects again.
What went wrong? Is there a mistake in the schematic?
I have literally no Idea what's going on, I just coppied the Schematic from the Pi Pico and added my components.

Code:

Code:

// the setup function runs once when you press reset or power the boardvoid setup() {  // initialize digital pin LED_BUILTIN as an output.  pinMode(25, OUTPUT);}// the loop function runs over and over again forevervoid loop() {  digitalWrite(25, HIGH);  // turn the LED on (HIGH is the voltage level)  delay(1000);                      // wait for a second  digitalWrite(25, LOW);   // turn the LED off by making the voltage LOW  delay(1000);                      // wait for a second}
Image may be NSFW.
Clik here to view.
Bild_2024-05-27_193754532.png

Image may be NSFW.
Clik here to view.
Bild_2024-05-27_193717611.png

Image may be NSFW.
Clik here to view.
Bild_2024-05-27_193658021.png

Statistics: Posted by RyzerPhenix — Mon May 27, 2024 5:38 pm — Replies 0 — Views 18



Viewing all articles
Browse latest Browse all 4626

Trending Articles