Closed jml3on closed 6 years ago
not sure what a proper fix is, as I'm not sure if this is a mingw or jantje issue.
I don't know and I wont have time to look at it before half september.
this older issue seems relevant: https://github.com/esp8266/Arduino/issues/110
It is indeed the case that ArduinoIDE has a modified stdlib under C:\Program Files (x86)\Arduino\hardware\tools\avr\avr\include that contains utoa.
So it's not a mingw issue, it should either be fixed in jantje or sloeber.
Using the following code under a blink project in local debug mode.
That program crashes when run in local mode. It works fine when removing the
unsigned
qualifier.Under debugger, it appears that calling from String(unsigned int)
loops for ever.
This is because
utoa
is not defined in stdlib.h, like itoa` is:not sure what a proper fix is, as I'm not sure if this is a mingw or jantje issue.