You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code as it stands doesnt like sending the NAKs or AKs
eg.
in handler clientsock.send(NAK)
TypeError: a bytes-like object is required, not 'str'
so I commented this out (line 104 i think) and found that the string being received is as follows
received:b'{'
which looks like the ispindel is sending the code to convert a { into a byte value rather than the actual {
so if I bypass this as its essentially sending the { and change the check to
if inpstr[2] != "{" :
then things continue to the next step and I get stuff like
I will look into this. It might have to do with Python 3 indeed as I have not noticed this behaviour with 2.7.
I am currently working on this part of the code anyway, so stay tuned and thanks for the info!
The code as it stands doesnt like sending the NAKs or AKs
eg.
so I commented this out (line 104 i think) and found that the string being received is as follows
received:b'{'
which looks like the ispindel is sending the code to convert a { into a byte value rather than the actual {
so if I bypass this as its essentially sending the { and change the check to
then things continue to the next step and I get stuff like
So two questions
iSpindel is at 5.85
The text was updated successfully, but these errors were encountered: