Tagged Questions

1
vote
4answers
664 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 …
1
vote
4answers
443 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
0answers
51 views

Desinging an Application for xmodem Transfer Through Dial-up in Java

I want to desing an application to send/receive a file with xmodem (written in java, I found the source code at http://stackoverflow.com/questions/606074/implementation-of-x-modem-protocol-in-java). …
0
votes
1answer
81 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
3answers
570 views

CRC calculation in Java

Hi, i'm readin 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 bytes …
0
votes
2answers
331 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 …
0
votes
2answers
138 views

Scriptable terminal program for modem testing

I have to use AT commands to setup my dial up modem (modulation seleccion, speed, etc), and dial other modem. Once the connection is stablished I have to transfer/receive files via zmodem, xmodem... …