mborgerson
Well-known member
At the top of boards.txt for TD 1.59 there is this:
# Solution for Arduino IDE 2.0 recognizing changes to this file:
# https://github.com/arduino/arduino-ide/issues/1030#issuecomment-1152005617
The solution at GitHub from @per1234 is:
1
That solution is no longer valid in Windows, as there is no "User data" folder at that location in IDE 2.3.1. Somewhere in researching the topic, I ran across the suggestion to delete the whole arduino-ide folder. That works, but does cause some library reload activity when the ide is restarted.
I also encountered problems when I tried to add a new device to the USB type menu. I added my "Serial + USBTMC [experimental] " item just after
"Serial + USBTMC [experimental]" in boards.txt and made the required changes to usb_desc.h, usb_desc., etc. in cores/Teensy4. When I compile the code, I get the descriptors for "Serial + USBTMC [experimental] ".
I have fallen back to my previous method of 'borrowing' the menu for USB "Triple Serial" and making my cores/Teensy4 changes under that device. I then get the proper descriptors for my project.
# Solution for Arduino IDE 2.0 recognizing changes to this file:
# https://github.com/arduino/arduino-ide/issues/1030#issuecomment-1152005617
The solution at GitHub from @per1234 is:
I'll share the workaround:
|
That solution is no longer valid in Windows, as there is no "User data" folder at that location in IDE 2.3.1. Somewhere in researching the topic, I ran across the suggestion to delete the whole arduino-ide folder. That works, but does cause some library reload activity when the ide is restarted.
I also encountered problems when I tried to add a new device to the USB type menu. I added my "Serial + USBTMC [experimental] " item just after
"Serial + USBTMC [experimental]" in boards.txt and made the required changes to usb_desc.h, usb_desc., etc. in cores/Teensy4. When I compile the code, I get the descriptors for "Serial + USBTMC [experimental] ".
I have fallen back to my previous method of 'borrowing' the menu for USB "Triple Serial" and making my cores/Teensy4 changes under that device. I then get the proper descriptors for my project.