trying using this code
Dim c AsString = JoinStrings(ArrayAsString("Number of millis: ", Millis, CRLF, "Number of micros: ", Micros))
gives a reboot of the Nano even when the code is not called yet.
Just removing this line solves the problem
Probably a low memory issue
Ram around 330 byts free
Stackusage gives 0
With a workaround (sending the parts of the string to the LCD in multiple times) gives no problem.
during compilation i see around 17000 bytes used of code and 1000 bytes of ram (2k internal)
it's not a big issue for me as i worked around the problems, but should be nice to get some answer if this issue can be solved and how
Dim c AsString = JoinStrings(ArrayAsString("Number of millis: ", Millis, CRLF, "Number of micros: ", Micros))
gives a reboot of the Nano even when the code is not called yet.
Just removing this line solves the problem
Probably a low memory issue
Ram around 330 byts free
Stackusage gives 0
With a workaround (sending the parts of the string to the LCD in multiple times) gives no problem.
during compilation i see around 17000 bytes used of code and 1000 bytes of ram (2k internal)
it's not a big issue for me as i worked around the problems, but should be nice to get some answer if this issue can be solved and how