hey all, 2.3.1 came up as a download yesterday at which i duly ignored and cracked on with my code to a seeeduino xiao. today i've come back and done the upgrade and now my seeeduino is recognised and i can compile, but the upload times out with an error of cant see seeduino on com6... which is still present in the dropdown menu.
you used to be able to download old versions, but this page is outdated... and im too stupid to understand github... so anywhere easy to download 2.3.0 from so i can get back to coding?
Hi @kelvinmead. I'm going to ask you to post the full verbose output from an upload attempt.
This procedure is not intended to solve the problem. The purpose is to gather more information.
Please do this:
Select File > Preferences... (or Arduino IDE > Settings... for macOS users) from the Arduino IDE menus.
The "Preferences" dialog will open.
Uncheck the box next to Show verbose output during: ☑ compilation in the "Preferences" dialog.
Check the box next to Show verbose output during: ☐ upload.
Click the "OK" button.
Attempt an upload, as you did before.
Wait for the upload to fail.
You will see a "Upload error: ..." notification at the bottom right corner of the Arduino IDE window. Click the "COPY ERROR MESSAGES" button on that notification.
Open a forum reply here by clicking the "Reply" button.
Click the <CODE/> icon on the post composer toolbar.
This will add the forum's code block markup (```) to your reply to make sure the error messages are correctly formatted.
Press the Ctrl+V keyboard shortcut (Command+V for macOS users).
This will paste the error output from the upload into the code block.
Move the cursor outside of the code block markup before you add any additional text to your reply.
Sketch uses 51100 bytes (19%) of program storage space. Maximum is 262144 bytes.
Performing 1200-bps touch reset on serial port COM6
Waiting for upload port...
No upload port found, using COM6 as fallback
"C:\Users\Kelvin Mead\AppData\Local\Arduino15\packages\Seeeduino\tools\bossac\1.7.0-arduino3/bossac.exe" -i -d --port=COM6 -U true -i -e -w -v "C:\Users\Kelvin Mead\AppData\Local\Temp\arduino\sketches\1AE4F596E4EE81DA8DE2677E0F8059FC/xiao_mousebuttonforfishing2b.ino.bin" -R
No device found on COM6
Failed uploading: uploading error: exit status 1
did all of the above, but it just stuck on uploading after the message saying "No upload port, using COM6 as fallback" so waited and then just pulled the cord.
what's weird, is that it did do. it worked just fine! just when the updates cae along it seemed to go strange! so ive done the double tap on reset, and it did stuff...
ive managed to upload a blink sketch, and its blinking but unsure of why the seeeduino has lost the automatic ability!
Your board has native USB. Part of the file that is uploaded to your board contains functionality that identifies the board to your operation system and reacts on the software reset that the IDE issues when an upload starts.
The sketch that you wrote can overwrite variables that are used by the above functionality due to bugs in your sketch. As a result your board can not identify itself any more or it will not react on the software reset.
Note that it might have been coincidence that this happened after the update. I do not believe that much in coincidences but I do not know exactly what happened at your side