My task appears simple at first: dial into a terminal over a modem, login, possibly send some other characters, and then receive file(s) via ZMODEM or KERMIT .. or send a file via ZMODEM or KERMIT.
I've been tearing my hair out trying to get this working correctly. Mostly I'm stuck on the ZMODEM protocol. I have a working implementation...
I have device connected through serial port to PC. Using c-kermit I can send commands to device and read output. I can also send files using kermit protocol.
In python we have pretty nice library - pySerial. I can use it to send/receive data from device. But is there some nice solution to send files using kermit protocol?
...
Can someone compare and contrast Reflection and KERMIT? Do they do the same thing? Which is better? Why? We may need to use one of these at my business and we are looking for input.
Thanks
W
...
I am working on a function that will give me a Kermit CRC value from a HEX string. I have a piece of code in DELPHI. I am a .NET developer and need the code in C#.
function CRC_16(cadena : string):word;
var
valuehex : word;
i: integer;
CRC : word;
Begin
CRC := 0;
for i := 1 to length(cadena) do
begin
valuehex :=...