ok, i know this a "try and miss" but i try, if anyone has any idea
i am trying to read data from serial, data is random (pure binary)
i have unexpeded fails in random times.
i have try to track it down as much as i can and i came in this
the following stream of data ALWAYS fail reading and ALWAYS fail reading the same byte "$7F$7F$FE$0C$40$00$11$62" (hex bytes)
always miss $11 (decimal 17)
i have rewrite my code in ACE basic, and works as it should, i also have test it real amiga500/os1.2 and fails the same as in winuae
here is a screenshot side by side amiblitz/ace
image blitzbasic FAIL
the problem is in blitzbasic2.1 as well too
this is the code i use for above test
i am trying to read data from serial, data is random (pure binary)
i have unexpeded fails in random times.
i have try to track it down as much as i can and i came in this
the following stream of data ALWAYS fail reading and ALWAYS fail reading the same byte "$7F$7F$FE$0C$40$00$11$62" (hex bytes)
always miss $11 (decimal 17)
i have rewrite my code in ACE basic, and works as it should, i also have test it real amiga500/os1.2 and fails the same as in winuae
here is a screenshot side by side amiblitz/ace
image blitzbasic FAIL
the problem is in blitzbasic2.1 as well too
this is the code i use for above test
Code:
; PROBLEMATIC STREAM TO SEND $7F$7F$FE$0C$40$00$11$62
isserial = OpenSerial("serial.device",0,9600,0)
NPrint isserial
WriteSerial 0,55
VWait 200
For i=1 To 10
serin.w = ReadSerial( 0)
Print Hex$(serin)
NPrint " - ",serin
Next
CloseSerial(0)
End
Christos