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

1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

/// Область памяти stat
#[derive(Clone, Debug, Default, Deserialize, PartialEq, Serialize)]
pub struct S {
    /// Активно задание из plc
    pub sp_plc_act: bool,

    /// Задание из hmi
    pub sp_hmi: f64,
}