-
-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Today I updated the addon in visual code. It was several months ago that I did an update.
Now when I try to upload my sketch via the programmer which is Arduino OTA (I work with an arduino mega 2560 board with the Optiboot 8 bootloader) I get the following error:
Programmer 'arduinoota125' not found
I can still upload my sketch manually via the following command :
"C:\Users\mail\AppData\Local\Arduino15\packages\Optiboot8/tools/arduinoOTA.exe" -address 192.168.1.125 -port 65280 -t 30 -username arduino -password password -sketch "c:\git\ChickenGuard\build/ChickenGuard.ino.bin" -upload /sketch -b
However I do not have an arduinoota125.exe on my system.
I see that in .vscode\arduino.json that
"programmer": "Arduino OTA (192.168.1.125)",
is changed to:
"programmer": "arduinoota125",
This is probably done by the upgrade.
Changing this to
"programmer": "arduinoota",
also doesn't help
still he says Programmer 'arduinoota' not found
Note that before this update I could upload without a problem. It is because I still could and that I copied that command .
Even adding C:\Users\mail\AppData\Local\Arduino15\packages\Optiboot8\tools to my path does not help.
Can you please help to make this work again?