i have an issue with code below : it is OK at compilation but after esp8266 crash at execution of this sequence...
i want to add AvailableRAM and StackBufferUsage at a payload to make a remote monitoring
what is the best way to add both parameters at array of byte ? i didn't find...
thanks for your help
i want to add AvailableRAM and StackBufferUsage at a payload to make a remote monitoring
B4X:
Dim payload_out() As Byte
payload_out = "rf_OK ".getbytes
payload_out = JoinBytes( Array(payload_out," Available RAM=".getbytes))
payload_out = JoinBytes( Array(payload_out,AvailableRAM))
payload_out = JoinBytes( Array(payload_out," Stack level=".getbytes))
payload_out = JoinBytes( Array(payload_out,StackBufferUsage))
what is the best way to add both parameters at array of byte ? i didn't find...
thanks for your help