Skip to main content

autocore_std/fb/beckhoff/
mod.rs

1//! Function blocks for Beckhoff EtherCAT terminals.
2//!
3//! Currently contains:
4//!
5//! - [`El3356`] — strain-gauge / load-cell evaluation terminal with peak
6//!   tracking, tare pulse, and SDO-based load-cell calibration.
7//!
8//! Each device FB is paired with a borrowed view type (e.g. [`El3356View`])
9//! and a macro that builds the view from a common GM field prefix — see the
10//! [`el3356_view!`](crate::el3356_view) macro.
11
12mod el3356;
13mod el3356_view;
14
15pub use el3356::El3356;
16pub use el3356_view::El3356View;