For an project i'm working on it's important that it's easy for any computer user to update the firmware.
Well the most of that project is solved. I've an nice little .bat file which auto detects the ports and all that kind of stuff. Only user input is yes or no to start the firmware update.
No arduino necessary for the users.
Well know the issue is that the .bat looks at the usb device name. In the normal case Arduino Due (programming port). But when i connect multiple arduino due's its messing up the .bat tool.
For that reason I need to change the device name, but again this is something I would like to do without any complex user actions. It has to be possible to do by people without any technical background.
I've tried multiple stuff to change the device name, I've found the define for it in the arduino root files. But changing that doesn't matter. I've found the due VID / PID names changing that makes windows choose the standard usb serial device name. I cant change it to anything usefull like arduino due project X. So the .bat file knows which port to take.
is there any work around for this?