Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
1answer
244 views

XModem file upload example in C?

Does someone have a code example in C for the receiving end of a file upload from hyperterminal using XModem? For Linux or other? Thank you and best regards, Bert
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 ...
2
votes
2answers
655 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... ...
1
vote
0answers
109 views

Cisco console XModem transfer

I need to be able to transfer a file with xmodem via the console on cisco devices (please don't turn this into a debate as to why am I using xmodem instead of TFTP, etc; the devices in question will ...
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
0answers
42 views

the modem for detecting voice

I write an application,and i want to detect when the remote party answers a phone call made by my application,i need to use the Voice Detection. Do you know which kind of modem have the appropriate ...
1
vote
1answer
622 views

CRC-CCITT (XModem) implementation in javascript

i'm trying to implement a CRC-CCITT (XModem) check in javascript without success. I need it in order to send socket string into a controller via RS232. does anyone know how to do it? or perhaps is ...
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
2answers
606 views

Xmodem-CRC protocol in c# problem

I'm porting a C++ xmodem protocol to C# and I'm having an issue with the CRC check. The application uploads files through a modem using the xmodem 128 byte protocol with CRC. I test it using ...
0
votes
2answers
630 views

Can I use the xmodem protocol with PySerial?

I have a working connection with my serial device via PySerial, but I also want to transfer files via the xmodem protocol as part of my program. Which would be the most platform-neutral way to do ...
0
votes
1answer
249 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
869 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 ...