Tagged Questions
3
votes
4answers
4k views
How to read negative byte values in Java less than -128
I'm reading data from another system using the serial port. I'm reading packets of 133 bytes. The second byte is the packet number and the third byte is the negative value of the packet number.
The ...
2
votes
3answers
3k views
CRC calculation in Java
I'm reading a file from serialport using x-modem protocol and 133 bytes packet. I'm reading
in that
1 byte is SOH
2 byte packet number
3 byte nagative of packet number
next 128 ...
1
vote
1answer
90 views
Java Xmodem only for sending file
I need XModem in my project only for sending is there any solution I am stuck in my project.
1
vote
4answers
2k views
Implementation of X-modem protocol in Java
I want to receive a file from serial port and I have to use that X-modem protocol is designed to receive a file over serial port in Java. So if anyone can have idea about then plz help me. I am in ...
0
votes
1answer
251 views
Block repeat problem with Java XMODEM implementation
I'm implementing XMODEM protocol in Java. In this protocol same block will repeat if packet doesn't match (when I send NAK again and again) but I'm getting it only 5 times.
What might be the ...
0
votes
2answers
874 views
compare hexadecimal values java
Duplicate: http://stackoverflow.com/questions/713162/compare-hexadecimal-values-with-decimal-in-java
hi,
i'm implementing x-modem protocol in java,i'm reading serialport and storing in byte array of ...