rsiot/components/cmp_plc/plc/library/drives/select_sp/
s.rs

1use serde::{Deserialize, Serialize};
2
3/// Область памяти stat
4#[derive(Clone, Debug, Default, Deserialize, PartialEq, Serialize)]
5pub struct S {
6    /// Активно задание из plc
7    pub sp_plc_act: bool,
8
9    /// Задание из hmi
10    pub sp_hmi: f64,
11}