i"m using the toturial of wifi server to connect to my esp proccesor.
the connection work's well, but i get an error message triying to parse the buffer that i send to the processor-
Dim ssid = "", password = "" As String
in line 7, i get this error-
"assert failed: xTaskRemoveFromEventList tasks.c:3656 (pxUnblockedTCB)" and the device reboot. "
i can't understand what the is the problem... but it dosen't parse the buffer i send.
do somebody understand what i do wrong?
the connection work's well, but i get an error message triying to parse the buffer that i send to the processor-
Dim ssid = "", password = "" As String
B4X:
Dim ssid = "", password = "" As String
If bc.IndexOf(Buffer, "GET") <> -1 Then
If bc.IndexOf(Buffer, "/set") <> -1 Then
Dim i1 As Int = 0
Dim i2 As Int = 0
For Each b1() As Byte In bc.Split(Buffer, " ")
If i1 = 1 Then
For Each b2() As Byte In bc.Split(b1, "/")
in line 7, i get this error-
"assert failed: xTaskRemoveFromEventList tasks.c:3656 (pxUnblockedTCB)" and the device reboot. "
i can't understand what the is the problem... but it dosen't parse the buffer i send.
do somebody understand what i do wrong?