[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Virtual serial drive
I also found an error in the protocol description, under write block on the ADTPro website its listed as
Host sends: byte stream:
One byte: "E" ($C5)
One byte: $02
Two bytes: requested block number (LSB, MSB)
One byte: EOR of the first four bytes
that tosses up an I/O ERROR, according to CommsThread.java it should be
Host sends: byte stream:
One byte: "E" ($C5)
One byte: $02
Two bytes: requested block number (LSB, MSB)
One byte: EOR of all bytes in block
Thanks for your efforts!