-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The upload "u" command in command sketch Arduino #57
Comments
The upload command start a process where the sketch reads ASCII bytes from the serial ports and extracts the hex data from this. Therefore you need a terminal emulator that supports an ASCII upload of the XBM file. One problem that can occur is that the upload is too fast and overwhelms the serial input buffer, so it is best if the upload program is able to add a few milliseconds of delay at the end of each line of data. The upload does not echo anything until it has read the entire image, so if the buffer was overrun and bytes lost then it will be likely just waiting for more input. I never had any success using the Arduino UI built in serial terminal with this command. Though you might be able to copy/paste the XBM file a line at a time. I usually used picocom (BSD/Linux). |
thanks for your recommendation, sorry for asking another question, it mentions the serial terminal with ASCII upload capability ,is there any recommended? I would like to give it a try, the one i am using might be not compatible. thanks |
If you are on Windows, possibly PuTTY has this capability (I do not use Windows so do not really have any other useful suggestions) |
While using the upload command, I am not able to upload any of sketch or xbm file, and i can't even type anything in serial terminal ?why is this happening, and any terminal can be used to upload the xbm file?thank you
The text was updated successfully, but these errors were encountered: