autocore-std 3.3.40

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

mod el3356;
mod el3356_view;

pub use el3356::El3356;
pub use el3356_view::El3356View;