hi
i dont know if this a bug or a feature
with this little program the stackbuffer goes over 3000 !?
is there a possibility to clean the stack between this loop?
i dont know if this a bug or a feature
with this little program the stackbuffer goes over 3000 !?
is there a possibility to clean the stack between this loop?
B4X:
#Region Project Attributes
#AutoFlushLogs: True
#CheckArrayBounds: True
#StackBufferSize: 3100
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public Serial1 As Serial
End Sub
Private Sub AppStart
Serial1.Initialize(115200)
Log("AppStart")
For t = 1 To 256
Log (Asc(t))
Log("stack :",StackBufferUsage)
Delay (100)
Next
End Sub