Thank you all for the hints!
I also cleaned the project but the output still was the same.
Running the test code on an other board(M5Stack-Core) gives the same result.
In my project I have to parse NMEA strings comming from a GPS. According examples on this forum the code should be like this:
Code:
Dim floatStr() As Byte = "12.34"
Log("float$=",floatStr)
Log("isNrF$? ", IsNumber(floatStr))
Dim f As Float = bc.StringFromBytes(floatStr)
Log("f=",f)
Log("+++++++++++++++++++++++++++++++")
Dim intStr As String = "123"
Log("int$=",intStr)
Log("isNrI$? ", IsNumber(intStr))
Dim i As Int = bc.StringFromBytes(intStr)
Log("i=",i)
Output:
ESP-ROM:esp32c3-api1-20210207
AppStart
float$=12.34
isNrF$? 1
f=12.3400
+++++++++++++++++++++++++++++++
int$=123
isNrI$? 1
i=123