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
I have an application (uLisp) that used to work on the AVR128DA48 Curiosity Nano or AVR128DB48 Curiosity Nano with DxCore versions up to and including 1.5.6. However, it doesn't work on 1.5.8, or the latest, 1.5.11.
It just hangs up when I open the Serial Monitor, rather than displaying the usual text prompt.
It uses the default settings on the Tools menu, apart from:
Write to flash from app: "Above 96K (AVR128 only)"
I use PROGMEM, but not PROGMEM_MAPPED.
I use Serial, and cater for the differences on these boards with, on the AVR128DA48 Curiosity Nano:
#define Serial Serial1
or, on the AVR128DB48 Curiosity Nano:
#define Serial Serial3
I noticed that the DxCore versions it stopped working on are the ones with the new How to set FLMAP option, but I've tried every option on that menu and none of them solve the issue.
I'm using Arduino IDE 1.8.19 on MacOS 10.13.
Any suggestions?
Thanks, David
The text was updated successfully, but these errors were encountered:
We already provide a facility to support arbitrary renumbering of the serial ports by having a variant file define that, or a tools submenu can redefine it (by adding a define to the command line invoked to run the compiler).
However, that does inevitably run into a conflict if someone else tries to do the same thing a different way.
Thanks for your reply. My point is that I had an application that used to work up to 1.5.6 and now it doesn't work, and it's not obvious how I should fix it.
See line 1090-1100 of Arduino.h.
Those lines are identical in the Arduino.h of core 1.5.6 that does work, and 1.5.11 that doesn't work, so I don't think that can be the explanation.
I have an application (uLisp) that used to work on the AVR128DA48 Curiosity Nano or AVR128DB48 Curiosity Nano with DxCore versions up to and including 1.5.6. However, it doesn't work on 1.5.8, or the latest, 1.5.11.
It just hangs up when I open the Serial Monitor, rather than displaying the usual text prompt.
It uses the default settings on the Tools menu, apart from:
Write to flash from app: "Above 96K (AVR128 only)"
I use PROGMEM, but not PROGMEM_MAPPED.
I use Serial, and cater for the differences on these boards with, on the AVR128DA48 Curiosity Nano:
or, on the AVR128DB48 Curiosity Nano:
I noticed that the DxCore versions it stopped working on are the ones with the new How to set FLMAP option, but I've tried every option on that menu and none of them solve the issue.
I'm using Arduino IDE 1.8.19 on MacOS 10.13.
Any suggestions?
Thanks, David
The text was updated successfully, but these errors were encountered: