You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom menu selection text doesn't update after changing boards when menu ID is different but menu text is the same as a previously selected board #5260
Now look at the selection text shown in quotes next to the Tools > Board > Processor menu item: Processor: ATmega2560 (Mega 2560). I you select the Tools > Board > Processor menu you can see that it doesn't have an ATmega2560 (Mega 2560) option. That text has been left over from the previous board selection. Even after changing the Processor menu selection the menu item text doesn't change.
This only occurs when the menu ID value in boards.txt is different from the Arduino AVR Boards(or any other core) value but the menu text value in boards.txt is the same as the other core's value. In this case:
menu.processor=Processor
If this is changed to menu.cpu=Processor(the same as Arduino AVR Boards) then the issue doesn't occur.
If it's changed to menu.processor=CPU then the issue doesn't occur.
If it's changed to menu.avr_boot_processor=Processor the issue does occur.
EDIT 2017-07-06: I checked with Arduino IDE 1.8.3 and the issue still occurs after following the steps above..