项目作者: bang-olufsen

项目描述 :
yahdlc - Yet Another HDLC implementation
高级语言: C++
项目地址: git://github.com/bang-olufsen/yahdlc.git
创建时间: 2015-09-18T07:02:14Z
项目社区:https://github.com/bang-olufsen/yahdlc

开源协议:MIT License

下载


yahdlc - Yet Another HDLC

Build Status Coverage Status Scan_Coverity License

The Yet Another High-Level Data Link Control implementation is a framing protocol optimized for embedded communication with single pass operations. It uses the HDLC asynchronous framing format. For more information see:

https://en.wikipedia.org/wiki/High-Level_Data_Link_Control

The supported frames are limited to DATA (I-frame with Poll bit), ACK (S-frame Receive Ready with Final bit) and NACK (S-frame Reject with Final bit). All DATA frames must be acknowledged or negative acknowledged using the defined ACK and NACK frames. The Address and Control fields uses the 8-bit format which means that the highest sequence number is 7. The FCS field is 16-bit by default, but can be set to 32-bit by the definition of “CRC32”.

Below are some examples on the usage:

  1. Acknowledge of frames:
  2. A ----> B DATA [Seq No = 1]
  3. A <---- B DATA [Seq No = 4]
  4. A <---- B ACK [Seq No = 2]
  5. A ----> B ACK [Seq No = 5]
  6. Negative acknowledge of frame:
  7. A ----> B DATA [Seq No = 1]
  8. A <---- B NACK [Seq No = 1]
  9. A ----> B DATA [Seq No = 1]
  10. Acknowledge frame lost:
  11. A ----> B DATA [Seq No = 1]
  12. A X<-- B ACK [Seq No = 2]
  13. *Timeout*
  14. A ----> B DATA [Seq No = 1]

Programming languages

Currently yahdlc supports C/C++ and Python. Python bindings for yahdlc has been implemented by SkypLabs and can be found here:

https://github.com/SkypLabs/python4yahdlc