ads_proto/lib.rs
1/*!
2 * Implementation of the [Beckhoff ADS](https://download.beckhoff.com/download/Document/automation/twincat3/TwinCAT_3_ADS_INTRO_EN.pdf) protocol
3*/
4
5///A collection of System Services with index group and index offset
6pub mod ads_services;
7///contains the ADS error codes and additional error types used in the module proto.
8pub mod error;
9///contains everything you need to create an [AMS header](proto::ams_header) and it's payload.
10pub mod proto;