28-Feb-2008, 02:28 AM
|
#1 (permalink)
|
|
Fixed Error!
Posts: 922
Join Date: Feb 2008
Rep Power: 1
|
HS XMODEM C Source Library 1.1
HS XMODEM is a software library in C (supplied with full source code) that provides a programmer with the off-the-shelf support for XMODEM protocol data transfer capability. Support for both sender and receiver are provided. Other features include 1024 block size vs 128, CRC vs checksum, configurable timers and retries* HOW IT WORKS:When user application initlialises HsXmodem library, it provides interface callbacks for the services used by Xmodem protocol module: timer management, serial transmission and reception, memory management, event callbacks. This architecture makes it easy to port Xmodem protocol module to any environmentXmodem module handles all protocol information flow, error recovery, acknowledgements, timeouts and so on. When it is appropriate to send next block of data Hs Xmodem will get next memory block from user application. Similarly, when data has been received Hs Xmodem module will get the next block of memory from user application to store data intoAs a backup or an alternative to TFTP, Xmodem is often used in embedded devices and appliances for the purpose of software or configuration upgrade or retrieval.
* FEATURES: - Xmodem Sender and Receiver
- 128 and 1024 block size
- Checksum and CRC option
- Configurable timers
- Configurable number of retries
Download
|
|
|