-
-
Notifications
You must be signed in to change notification settings - Fork 215
Closed
Labels
Description
I am using the Arduino SDK and IDE.
The program compiles and links successfully, but after uploading, the Pico LED starts blinking 4 long (400 ms on, 400 ms off, 4 times) and 4 short (150 ms on, 150 ms off, 4 times) , and again.
Below a logic trace:
Is this a kind of error message like with the Raspberry Pi B board? Where can I find the related documentation?
I first reported the issue at https://www.raspberrypi.org/forums/viewtopic.php?f=144&t=318967, as the blinking LED might have been a message from the hardware, as Inside the RP2040 is a 'permanent ROM' USB UF2 bootloader.
I solved the problem by using another port of Arduino for the RP2040 Pico at https://github.com/earlephilhower/arduino-pico
So the questions are:
- Is the blinking LED a hardware feature from the 'permanent ROM' USB UF2 bootloader or a software feature from arduino /ArduinoCore-mbed?
- Why large projects fail to run with the arduino /ArduinoCore-mbed and succeed with the earlephilhower/arduino-pico?
Thank you!