Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a w600-pico with micropython preinstalled. I create a socket and can send receive commands over socket.
This is program:
import socket
s = socket.socket()
s.bind(('', 23))
s.listen(5)
while True:
conn, addr = s.accept()
request = conn.recv(1024)
print(request)
And when connect with lasergrbl the response is only 18 ... so... ican read only 18 ...after this ... nothing ... how see bellow:
Connected to TIM-32883215
ftpserver is running.
URL: 192.168.1.9:21 username: "user", password:"12345678"
192.168.1.9
b'\x18'
But in comlog.txt appear many "?" 3F how see bellow:
00465 06125563 com Open 192.168.1.9:23 Ctrl-X
00466 06125629 tx [18]
00467 06125631 tx [3F]
00468 06125882 tx [3F]
00469 06126132 tx [3F]
00470 06126383 tx [3F]
00471 06126632 tx [3F]
00472 06126883 tx [3F]
00473 06127132 tx [3F]
00474 06127382 tx [3F]
00475 06127632 tx [3F]
00476 06127881 tx [3F]
00477 06128132 tx [3F]
00478 06128381 tx [3F]
00479 06128631 tx [3F]
00480 06128881 tx [3F]
00481 06129132 tx [3F]
00482 06129381 tx [3F]
00483 06129632 tx [3F]
00484 06129882 tx [3F]
00485 06130131 tx [3F]
00486 06130382 tx [3F]
00487 06130632 tx [3F]
00488 06130881 tx [3F]
00489 06131132 tx [3F]
00490 06131382 tx [3F]
00491 06131631 tx [3F]
00492 06131882 tx [3F]
00493 06132133 tx [3F]
00494 06132382 tx [3F]
00495 06132631 tx [3F]
00496 06132882 tx [3F]
00497 06133131 tx [3F]
00498 06133382 tx [3F]
**My question is : because not received 3F also in my program?
Help me please!**
Beta Was this translation helpful? Give feedback.
All reactions