diff --git a/src/ast/message.rs b/src/ast/message.rs index 06491a3..bae750e 100644 --- a/src/ast/message.rs +++ b/src/ast/message.rs @@ -57,6 +57,7 @@ mod tests { use super::*; use crate::ast::{ByteOrder, MultiplexIndicator, ValueType}; use crate::test_helpers::*; + use crate::NumericValue; #[test] fn message_definition_test() { @@ -80,8 +81,8 @@ BO_ 1 MCA_A1: 6 MFA value_type: ValueType::Unsigned, factor: 1.0, offset: 0.0, - min: 0.0, - max: 0.0, + min: NumericValue::Uint(0), + max: NumericValue::Uint(0), unit: "x".to_string(), multiplexer_indicator: MultiplexIndicator::Plain, receivers: vec!["XYZ_OUS".to_string()], @@ -94,8 +95,55 @@ BO_ 1 MCA_A1: 6 MFA value_type: ValueType::Signed, factor: 1.0, offset: 0.0, - min: 0.0, - max: 0.0, + min: NumericValue::Uint(0), + max: NumericValue::Uint(0), + unit: "x".to_string(), + multiplexer_indicator: MultiplexIndicator::Plain, + receivers: vec!["DFA_FUS".to_string()], + }, + ], + }; + let val = test_into::(def.trim_start(), Rule::message); + assert_eq!(val, exp); + } + + #[test] + fn min_max_numeric_test() { + let def = r#"BO_ 1 MCA_A1: 6 MFA + SG_ uint : 9|2@1+ (1,0) [0|18446744073709551615] "x" XYZ_OUS + SG_ int : 3|2@0- (1,0) [-9223372036854775808|9223372036854775807] "x" DFA_FUS +"#; + + let exp = Message { + id: MessageId::Standard(1), + name: "MCA_A1".to_string(), + size: 6, + transmitter: Transmitter::NodeName("MFA".to_string()), + signals: vec![ + Signal { + name: "uint".to_string(), + start_bit: 9, + size: 2, + byte_order: ByteOrder::LittleEndian, + value_type: ValueType::Unsigned, + factor: 1.0, + offset: 0.0, + min: NumericValue::Uint(0), + max: NumericValue::Uint(18_446_744_073_709_551_615), + unit: "x".to_string(), + multiplexer_indicator: MultiplexIndicator::Plain, + receivers: vec!["XYZ_OUS".to_string()], + }, + Signal { + name: "int".to_string(), + start_bit: 3, + size: 2, + byte_order: ByteOrder::BigEndian, + value_type: ValueType::Signed, + factor: 1.0, + offset: 0.0, + min: NumericValue::Int(-9_223_372_036_854_775_808), + max: NumericValue::Uint(9_223_372_036_854_775_807), unit: "x".to_string(), multiplexer_indicator: MultiplexIndicator::Plain, receivers: vec!["DFA_FUS".to_string()], diff --git a/src/ast/numeric_value.rs b/src/ast/numeric_value.rs index d9fed36..429d080 100644 --- a/src/ast/numeric_value.rs +++ b/src/ast/numeric_value.rs @@ -2,7 +2,7 @@ use std::str::FromStr; use crate::DbcError; -#[derive(Clone, Debug, PartialEq)] +#[derive(Clone, Copy, Debug, PartialEq)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] pub enum NumericValue { Uint(u64), @@ -25,3 +25,42 @@ impl FromStr for NumericValue { } } } + +impl std::fmt::Display for NumericValue { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + match self { + NumericValue::Uint(v) => write!(f, "{v}"), + NumericValue::Int(v) => write!(f, "{v}"), + NumericValue::Double(v) => write!(f, "{v}"), + } + } +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn unsigned_max() { + let value = u64::MAX.to_string(); + assert_eq!( + format!("{}", NumericValue::from_str(&value).unwrap()), + value + ); + } + + #[test] + fn signed_min() { + let value = i64::MIN.to_string(); + assert_eq!( + format!("{}", NumericValue::from_str(&value).unwrap()), + value + ); + } + + #[test] + fn double() { + let value = "3.141592653589793"; + assert_eq!(format!("{}", NumericValue::from_str(value).unwrap()), value); + } +} diff --git a/src/ast/signal.rs b/src/ast/signal.rs index 22d4a5a..fb8bd4e 100644 --- a/src/ast/signal.rs +++ b/src/ast/signal.rs @@ -1,8 +1,8 @@ use can_dbc_pest::{Pair, Rule}; -use crate::ast::{ByteOrder, MultiplexIndicator, ValueType}; +use crate::ast::{ByteOrder, MultiplexIndicator, NumericValue, ValueType}; use crate::parser::{ - collect_strings, next, next_optional_rule, next_rule, next_string, parse_min_max_float, + collect_strings, next, next_optional_rule, next_rule, next_string, parse_min_max_numeric, parse_next_float, parse_next_inner_str, parse_next_uint, validated_inner, }; use crate::DbcError; @@ -21,8 +21,8 @@ pub struct Signal { pub value_type: ValueType, pub factor: f64, pub offset: f64, - pub min: f64, - pub max: f64, + pub min: NumericValue, + pub max: NumericValue, pub unit: String, #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Vec::is_empty"))] pub receivers: Vec, @@ -49,7 +49,7 @@ impl TryFrom> for Signal { let value_type = next(&mut pairs)?.try_into()?; let factor = parse_next_float(&mut pairs, Rule::factor)?; let offset = parse_next_float(&mut pairs, Rule::offset)?; - let (min, max) = parse_min_max_float(next_rule(&mut pairs, Rule::min_max)?)?; + let (min, max) = parse_min_max_numeric(next_rule(&mut pairs, Rule::min_max)?)?; let unit = parse_next_inner_str(&mut pairs, Rule::unit)?; let receivers = collect_strings(&mut pairs, Rule::node_name)?; @@ -89,8 +89,8 @@ mod tests { value_type: ValueType::Signed, factor: 1.0, offset: 0.0, - min: 0.0, - max: 0.0, + min: NumericValue::Uint(0), + max: NumericValue::Uint(0), unit: "x".to_string(), multiplexer_indicator: MultiplexIndicator::Plain, receivers: vec!["UFA".to_string()], @@ -112,8 +112,8 @@ mod tests { value_type: ValueType::Signed, factor: 1.0, offset: 0.0, - min: 0.0, - max: 0.0, + min: NumericValue::Uint(0), + max: NumericValue::Uint(0), unit: "x".to_string(), multiplexer_indicator: MultiplexIndicator::Plain, receivers: vec!["DFA_FUS".to_string()], diff --git a/src/parser.rs b/src/parser.rs index 5a640ca..3cca501 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -4,6 +4,8 @@ use can_dbc_pest::{Error as PestError, Pair, Pairs, Rule}; +use crate::ast::NumericValue; + pub type DbcResult = Result; /// A helper function to decode cp1252 bytes, as DBC files are often encoded in cp1252. @@ -232,12 +234,17 @@ pub(crate) fn parse_min_max_int(pair: Pair) -> DbcResult<(i64, i64)> { Ok((min_val, max_val)) } -/// Helper to parse min/max values from a `min_max` rule as floats -pub(crate) fn parse_min_max_float(pair: Pair) -> DbcResult<(f64, f64)> { +/// Helper to parse min/max values from a `min_max` rule as `NumericValue` +/// This preserves the exact value without precision loss for large integers like 2**64 +pub(crate) fn parse_min_max_numeric(pair: Pair) -> DbcResult<(NumericValue, NumericValue)> { let mut pairs = pair.into_inner(); - let min_val = parse_next_float(&mut pairs, Rule::minimum)?; - let max_val = parse_next_float(&mut pairs, Rule::maximum)?; + let min_val = next_rule(&mut pairs, Rule::minimum)? + .as_str() + .parse::()?; + let max_val = next_rule(&mut pairs, Rule::maximum)? + .as_str() + .parse::()?; expect_empty(&pairs).expect("pest grammar ensures no extra items"); Ok((min_val, max_val)) diff --git a/tests/snapshots/canpy/DBC_template.snap b/tests/snapshots/canpy/DBC_template.snap index 75ae297..90c0897 100644 --- a/tests/snapshots/canpy/DBC_template.snap +++ b/tests/snapshots/canpy/DBC_template.snap @@ -72,8 +72,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Node1 @@ -86,8 +88,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Node0 @@ -99,8 +103,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Node0 @@ -119,8 +125,10 @@ messages: value_type: Unsigned factor: 100 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: "%" receivers: - Node1 @@ -133,8 +141,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Node1 diff --git a/tests/snapshots/dbc-cantools/BU_BO_REL_.snap b/tests/snapshots/dbc-cantools/BU_BO_REL_.snap index 4f2eecd..55da536 100644 --- a/tests/snapshots/dbc-cantools/BU_BO_REL_.snap +++ b/tests/snapshots/dbc-cantools/BU_BO_REL_.snap @@ -50,8 +50,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: "%" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/BU_BO_REL_Message.snap b/tests/snapshots/dbc-cantools/BU_BO_REL_Message.snap index aab686d..7ddebec 100644 --- a/tests/snapshots/dbc-cantools/BU_BO_REL_Message.snap +++ b/tests/snapshots/dbc-cantools/BU_BO_REL_Message.snap @@ -51,8 +51,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: "" receivers: - ECU2 diff --git a/tests/snapshots/dbc-cantools/abs.snap b/tests/snapshots/dbc-cantools/abs.snap index 034a0ff..3cf96c1 100644 --- a/tests/snapshots/dbc-cantools/abs.snap +++ b/tests/snapshots/dbc-cantools/abs.snap @@ -74,8 +74,10 @@ messages: value_type: Unsigned factor: 0.015625 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: m/s receivers: - Vector__XXX @@ -87,8 +89,10 @@ messages: value_type: Unsigned factor: 0.015625 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: m/s receivers: - Vector__XXX @@ -100,8 +104,10 @@ messages: value_type: Unsigned factor: 0.015625 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: m/s receivers: - Vector__XXX @@ -113,8 +119,10 @@ messages: value_type: Unsigned factor: 0.015625 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: m/s receivers: - Vector__XXX @@ -163,8 +171,10 @@ messages: value_type: Unsigned factor: 0.005 offset: -163.84 - min: -163.84 - max: 163.83 + min: + Double: -163.84 + max: + Double: 163.83 unit: °/s receivers: - ABS @@ -176,8 +186,10 @@ messages: value_type: Unsigned factor: 0.000127465 offset: -4.1768 - min: -4.1768 - max: 4.1765 + min: + Double: -4.1768 + max: + Double: 4.1765 unit: g receivers: - ABS @@ -196,8 +208,10 @@ messages: value_type: Unsigned factor: 0.005 offset: -163.84 - min: -163.84 - max: 163.835 + min: + Double: -163.84 + max: + Double: 163.835 unit: °/s receivers: - ABS @@ -209,8 +223,10 @@ messages: value_type: Unsigned factor: 0.000127465 offset: -4.1768 - min: -4.1768 - max: 4.1765 + min: + Double: -4.1768 + max: + Double: 4.1765 unit: g receivers: - ABS @@ -229,8 +245,10 @@ messages: value_type: Unsigned factor: 0.000127465 offset: -4.1768 - min: -4.1768 - max: 4.1765 + min: + Double: -4.1768 + max: + Double: 4.1765 unit: g receivers: - ABS @@ -249,8 +267,10 @@ messages: value_type: Unsigned factor: 0.015625 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: m/s receivers: - Vector__XXX @@ -262,8 +282,10 @@ messages: value_type: Unsigned factor: 0.015625 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: m/s receivers: - Vector__XXX @@ -275,8 +297,10 @@ messages: value_type: Unsigned factor: 0.015625 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: m/s receivers: - Vector__XXX @@ -288,8 +312,10 @@ messages: value_type: Unsigned factor: 0.015625 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: m/s receivers: - Vector__XXX @@ -307,8 +333,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 11 + min: + Uint: 0 + max: + Uint: 11 unit: "" receivers: - ABS @@ -333,8 +361,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "-" receivers: - Vector__XXX @@ -353,8 +383,10 @@ messages: value_type: Unsigned factor: 0.05 offset: 0 - min: 0 - max: 10 + min: + Uint: 0 + max: + Uint: 10 unit: cm3 receivers: - Vector__XXX @@ -366,8 +398,10 @@ messages: value_type: Unsigned factor: 0.05 offset: 0 - min: 0 - max: 10 + min: + Uint: 0 + max: + Uint: 10 unit: cm3 receivers: - Vector__XXX @@ -379,8 +413,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 32 + min: + Uint: 0 + max: + Uint: 32 unit: "" receivers: - Vector__XXX @@ -392,8 +428,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 32 + min: + Uint: 0 + max: + Uint: 32 unit: "" receivers: - Vector__XXX @@ -405,8 +443,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 32 + min: + Uint: 0 + max: + Uint: 32 unit: "" receivers: - Vector__XXX @@ -418,8 +458,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 32 + min: + Uint: 0 + max: + Uint: 32 unit: "" receivers: - Vector__XXX @@ -438,8 +480,10 @@ messages: value_type: Unsigned factor: 0.00012742 offset: -4.1768 - min: -4.1768 - max: 4.1736697 + min: + Double: -4.1768 + max: + Double: 4.1736697 unit: g receivers: - Vector__XXX @@ -451,8 +495,10 @@ messages: value_type: Unsigned factor: 0.00012742 offset: -4.1768 - min: -4.1768 - max: 4.1765 + min: + Double: -4.1768 + max: + Double: 4.1765 unit: g receivers: - Vector__XXX @@ -464,8 +510,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 63 + min: + Uint: 0 + max: + Uint: 63 unit: "" receivers: - Vector__XXX @@ -477,8 +525,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 63 + min: + Uint: 0 + max: + Uint: 63 unit: "" receivers: - Vector__XXX @@ -490,8 +540,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - Vector__XXX @@ -510,8 +562,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -524,8 +578,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -538,8 +594,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -552,8 +610,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -566,8 +626,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -580,8 +642,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -594,8 +658,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -608,8 +674,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -622,8 +690,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -636,8 +706,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -650,8 +722,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -664,8 +738,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -678,8 +754,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -692,8 +770,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -706,8 +786,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -720,8 +802,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -734,8 +818,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -748,8 +834,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -762,8 +850,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -776,8 +866,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -790,8 +882,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -804,8 +898,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -818,8 +914,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -832,8 +930,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -846,8 +946,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -860,8 +962,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -874,8 +978,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -888,8 +994,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: ASCII receivers: - Vector__XXX @@ -902,8 +1010,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 99 + min: + Uint: 0 + max: + Uint: 99 unit: "" receivers: - Vector__XXX @@ -916,8 +1026,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 1 - max: 12 + min: + Uint: 1 + max: + Uint: 12 unit: "" receivers: - Vector__XXX @@ -930,8 +1042,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 1 - max: 31 + min: + Uint: 1 + max: + Uint: 31 unit: "" receivers: - Vector__XXX @@ -944,8 +1058,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 24 + min: + Uint: 0 + max: + Uint: 24 unit: "" receivers: - Vector__XXX @@ -958,8 +1074,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 59 + min: + Uint: 0 + max: + Uint: 59 unit: "" receivers: - Vector__XXX @@ -972,8 +1090,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 59 + min: + Uint: 0 + max: + Uint: 59 unit: "" receivers: - Vector__XXX @@ -986,8 +1106,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -1000,8 +1122,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 99 + min: + Uint: 0 + max: + Uint: 99 unit: "" receivers: - Vector__XXX @@ -1014,8 +1138,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 1 - max: 12 + min: + Uint: 1 + max: + Uint: 12 unit: "" receivers: - Vector__XXX @@ -1028,8 +1154,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 1 - max: 31 + min: + Uint: 1 + max: + Uint: 31 unit: "" receivers: - Vector__XXX @@ -1042,8 +1170,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 99999 + min: + Uint: 0 + max: + Uint: 99999 unit: "" receivers: - Vector__XXX @@ -1062,8 +1192,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: Bar receivers: - Vector__XXX @@ -1075,8 +1207,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: Bar receivers: - Vector__XXX @@ -1088,8 +1222,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: "%" receivers: - Vector__XXX @@ -1101,8 +1237,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: "%" receivers: - Vector__XXX @@ -1121,8 +1259,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 1 - max: 12 + min: + Uint: 1 + max: + Uint: 12 unit: "" receivers: - Vector__XXX @@ -1134,8 +1274,10 @@ messages: value_type: Signed factor: 0.01526 offset: 0 - min: -42.5 - max: 425 + min: + Double: -42.5 + max: + Uint: 425 unit: bar receivers: - Vector__XXX @@ -1147,8 +1289,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1160,8 +1304,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -1173,8 +1319,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1186,8 +1334,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1199,8 +1349,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1212,8 +1364,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1225,8 +1379,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -1238,8 +1394,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -1251,8 +1409,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -1264,8 +1424,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -1277,8 +1439,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1290,8 +1454,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1303,8 +1469,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1316,8 +1484,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1329,8 +1499,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1342,8 +1514,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1355,8 +1529,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -1368,8 +1544,10 @@ messages: value_type: Signed factor: 0.01526 offset: 0 - min: -42.5 - max: 425 + min: + Double: -42.5 + max: + Uint: 425 unit: bar receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/attribute_Event.snap b/tests/snapshots/dbc-cantools/attribute_Event.snap index 3abb041..9a61a91 100644 --- a/tests/snapshots/dbc-cantools/attribute_Event.snap +++ b/tests/snapshots/dbc-cantools/attribute_Event.snap @@ -50,8 +50,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/attributes.snap b/tests/snapshots/dbc-cantools/attributes.snap index 506833e..ad55483 100644 --- a/tests/snapshots/dbc-cantools/attributes.snap +++ b/tests/snapshots/dbc-cantools/attributes.snap @@ -49,8 +49,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -68,8 +70,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/attributes_relation.snap b/tests/snapshots/dbc-cantools/attributes_relation.snap index 1cf3da9..7d7eabf 100644 --- a/tests/snapshots/dbc-cantools/attributes_relation.snap +++ b/tests/snapshots/dbc-cantools/attributes_relation.snap @@ -51,8 +51,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - ECU1 @@ -71,8 +73,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - ECU2 diff --git a/tests/snapshots/dbc-cantools/bad_message_length.snap b/tests/snapshots/dbc-cantools/bad_message_length.snap index 268f685..1366034 100644 --- a/tests/snapshots/dbc-cantools/bad_message_length.snap +++ b/tests/snapshots/dbc-cantools/bad_message_length.snap @@ -47,8 +47,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/big_numbers.snap b/tests/snapshots/dbc-cantools/big_numbers.snap index 7ee08ad..70661d0 100644 --- a/tests/snapshots/dbc-cantools/big_numbers.snap +++ b/tests/snapshots/dbc-cantools/big_numbers.snap @@ -49,8 +49,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -68,8 +70,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/bus_comment.snap b/tests/snapshots/dbc-cantools/bus_comment.snap index a2538d5..6bac8b7 100644 --- a/tests/snapshots/dbc-cantools/bus_comment.snap +++ b/tests/snapshots/dbc-cantools/bus_comment.snap @@ -48,8 +48,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -90,8 +96,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -104,8 +112,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -118,8 +128,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -132,8 +144,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -146,8 +160,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -160,8 +176,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -174,8 +192,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -188,8 +208,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -201,8 +223,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/choices.snap b/tests/snapshots/dbc-cantools/choices.snap index 1b178d8..3f486c8 100644 --- a/tests/snapshots/dbc-cantools/choices.snap +++ b/tests/snapshots/dbc-cantools/choices.snap @@ -65,8 +65,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: -128 - max: 127 + min: + Int: -128 + max: + Uint: 127 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/choices_issue_with_name.snap b/tests/snapshots/dbc-cantools/choices_issue_with_name.snap index eb54e2f..0324303 100644 --- a/tests/snapshots/dbc-cantools/choices_issue_with_name.snap +++ b/tests/snapshots/dbc-cantools/choices_issue_with_name.snap @@ -54,8 +54,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/comments_hex_and_motorola_converted_from_sym.snap b/tests/snapshots/dbc-cantools/comments_hex_and_motorola_converted_from_sym.snap index fb37f76..b0bcfc7 100644 --- a/tests/snapshots/dbc-cantools/comments_hex_and_motorola_converted_from_sym.snap +++ b/tests/snapshots/dbc-cantools/comments_hex_and_motorola_converted_from_sym.snap @@ -49,8 +49,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -63,8 +65,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -96,8 +102,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -109,8 +117,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -122,8 +132,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -135,8 +147,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -148,8 +162,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -161,8 +177,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -174,8 +192,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -187,8 +207,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/dump_signal_choices.snap b/tests/snapshots/dbc-cantools/dump_signal_choices.snap index 87ba1e2..0c5d6b5 100644 --- a/tests/snapshots/dbc-cantools/dump_signal_choices.snap +++ b/tests/snapshots/dbc-cantools/dump_signal_choices.snap @@ -42,8 +42,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -55,8 +57,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/emc32.snap b/tests/snapshots/dbc-cantools/emc32.snap index 0d98ca6..cc8a0ef 100644 --- a/tests/snapshots/dbc-cantools/emc32.snap +++ b/tests/snapshots/dbc-cantools/emc32.snap @@ -50,8 +50,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -63,8 +65,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - EMV_Statusmeldungen @@ -89,8 +95,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -102,8 +110,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/empty_choice.snap b/tests/snapshots/dbc-cantools/empty_choice.snap index 730678e..01b8b95 100644 --- a/tests/snapshots/dbc-cantools/empty_choice.snap +++ b/tests/snapshots/dbc-cantools/empty_choice.snap @@ -57,8 +57,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -70,8 +72,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -83,8 +87,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/fd_test.snap b/tests/snapshots/dbc-cantools/fd_test.snap index a68c380..946a79c 100644 --- a/tests/snapshots/dbc-cantools/fd_test.snap +++ b/tests/snapshots/dbc-cantools/fd_test.snap @@ -47,8 +47,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -66,8 +68,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -85,8 +89,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -104,8 +110,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/floating_point.snap b/tests/snapshots/dbc-cantools/floating_point.snap index 6655dbb..92e8ca4 100644 --- a/tests/snapshots/dbc-cantools/floating_point.snap +++ b/tests/snapshots/dbc-cantools/floating_point.snap @@ -50,8 +50,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -70,8 +72,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -83,8 +87,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/floating_point_use_float.snap b/tests/snapshots/dbc-cantools/floating_point_use_float.snap index 580c4b4..d4a6ddb 100644 --- a/tests/snapshots/dbc-cantools/floating_point_use_float.snap +++ b/tests/snapshots/dbc-cantools/floating_point_use_float.snap @@ -50,8 +50,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -70,8 +72,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -83,8 +87,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -102,8 +108,10 @@ messages: value_type: Unsigned factor: 0.001 offset: -0.125 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/foobar.snap b/tests/snapshots/dbc-cantools/foobar.snap index 69b4ddf..be9e262 100644 --- a/tests/snapshots/dbc-cantools/foobar.snap +++ b/tests/snapshots/dbc-cantools/foobar.snap @@ -60,8 +60,10 @@ messages: value_type: Signed factor: 0.01 offset: 250 - min: 229.53 - max: 270.47 + min: + Double: 229.53 + max: + Double: 270.47 unit: degK receivers: - BAR @@ -73,8 +75,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 5 + min: + Uint: 0 + max: + Uint: 5 unit: m receivers: - FOO @@ -93,8 +97,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 10 + min: + Uint: 0 + max: + Uint: 10 unit: "" receivers: - BAR @@ -106,8 +112,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 8 + min: + Uint: 0 + max: + Uint: 8 unit: "" receivers: - BAR @@ -126,8 +134,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - FUM @@ -146,8 +156,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - FUM @@ -159,8 +171,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -179,8 +193,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - BAR diff --git a/tests/snapshots/dbc-cantools/issue_168.snap b/tests/snapshots/dbc-cantools/issue_168.snap index a2b3198..60184c6 100644 --- a/tests/snapshots/dbc-cantools/issue_168.snap +++ b/tests/snapshots/dbc-cantools/issue_168.snap @@ -60,8 +60,10 @@ messages: value_type: Signed factor: 0.01 offset: 250 - min: 229.53 - max: 270.47 + min: + Double: 229.53 + max: + Double: 270.47 unit: degK receivers: - BAR @@ -73,8 +75,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 5 + min: + Uint: 0 + max: + Uint: 5 unit: m receivers: - FOO @@ -93,8 +97,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 10 + min: + Uint: 0 + max: + Uint: 10 unit: "" receivers: - BAR @@ -106,8 +112,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 8 + min: + Uint: 0 + max: + Uint: 8 unit: "" receivers: - BAR @@ -126,8 +134,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - FUM @@ -146,8 +156,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - FUM @@ -159,8 +171,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -179,8 +193,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - BAR diff --git a/tests/snapshots/dbc-cantools/issue_184_extended_mux_cascaded.snap b/tests/snapshots/dbc-cantools/issue_184_extended_mux_cascaded.snap index abc6778..f0c2768 100644 --- a/tests/snapshots/dbc-cantools/issue_184_extended_mux_cascaded.snap +++ b/tests/snapshots/dbc-cantools/issue_184_extended_mux_cascaded.snap @@ -48,8 +48,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -90,8 +96,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -103,8 +111,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_184_extended_mux_cascaded_dumped.snap b/tests/snapshots/dbc-cantools/issue_184_extended_mux_cascaded_dumped.snap index 9381911..9de1330 100644 --- a/tests/snapshots/dbc-cantools/issue_184_extended_mux_cascaded_dumped.snap +++ b/tests/snapshots/dbc-cantools/issue_184_extended_mux_cascaded_dumped.snap @@ -48,8 +48,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -89,8 +95,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -102,8 +110,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_184_extended_mux_independent_multiplexors.snap b/tests/snapshots/dbc-cantools/issue_184_extended_mux_independent_multiplexors.snap index b9a7abb..ab9e2e6 100644 --- a/tests/snapshots/dbc-cantools/issue_184_extended_mux_independent_multiplexors.snap +++ b/tests/snapshots/dbc-cantools/issue_184_extended_mux_independent_multiplexors.snap @@ -48,8 +48,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -75,8 +79,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -89,8 +95,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -103,8 +111,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -116,8 +126,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_184_extended_mux_independent_multiplexors_dumped.snap b/tests/snapshots/dbc-cantools/issue_184_extended_mux_independent_multiplexors_dumped.snap index 70bd121..1331eb6 100644 --- a/tests/snapshots/dbc-cantools/issue_184_extended_mux_independent_multiplexors_dumped.snap +++ b/tests/snapshots/dbc-cantools/issue_184_extended_mux_independent_multiplexors_dumped.snap @@ -48,8 +48,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -75,8 +79,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -89,8 +95,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -103,8 +111,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -116,8 +126,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_184_extended_mux_multiple_values.snap b/tests/snapshots/dbc-cantools/issue_184_extended_mux_multiple_values.snap index 18c10f8..c516aa8 100644 --- a/tests/snapshots/dbc-cantools/issue_184_extended_mux_multiple_values.snap +++ b/tests/snapshots/dbc-cantools/issue_184_extended_mux_multiple_values.snap @@ -48,8 +48,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -89,8 +95,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_184_extended_mux_multiple_values_dumped.snap b/tests/snapshots/dbc-cantools/issue_184_extended_mux_multiple_values_dumped.snap index 974352e..1525b1c 100644 --- a/tests/snapshots/dbc-cantools/issue_184_extended_mux_multiple_values_dumped.snap +++ b/tests/snapshots/dbc-cantools/issue_184_extended_mux_multiple_values_dumped.snap @@ -48,8 +48,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -89,8 +95,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_199.snap b/tests/snapshots/dbc-cantools/issue_199.snap index 1b8c7da..5592736 100644 --- a/tests/snapshots/dbc-cantools/issue_199.snap +++ b/tests/snapshots/dbc-cantools/issue_199.snap @@ -96,8 +96,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - NEO @@ -116,8 +118,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -129,8 +133,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -142,8 +148,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -155,8 +163,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -168,8 +178,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -188,8 +200,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - NEO @@ -201,8 +215,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - NEO @@ -214,8 +230,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - NEO @@ -234,8 +252,10 @@ messages: value_type: Signed factor: 0.0625 offset: 0 - min: -540 - max: 540 + min: + Int: -540 + max: + Uint: 540 unit: deg receivers: - NEO @@ -254,8 +274,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - NEO @@ -274,8 +296,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -287,8 +311,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - GMLAN @@ -301,8 +327,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 254 + min: + Uint: 0 + max: + Uint: 254 unit: "" receivers: - GMLAN @@ -315,8 +343,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - GMLAN @@ -336,8 +366,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - NEO @@ -349,8 +381,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - NEO @@ -369,8 +403,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 70 + min: + Uint: 0 + max: + Uint: 70 unit: yd/s receivers: - NEO @@ -382,8 +418,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 70 + min: + Uint: 0 + max: + Uint: 70 unit: yd/s receivers: - NEO @@ -395,8 +433,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 70 + min: + Uint: 0 + max: + Uint: 70 unit: yd/s receivers: - NEO @@ -408,8 +448,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 70 + min: + Uint: 0 + max: + Uint: 70 unit: yd/s receivers: - NEO @@ -428,8 +470,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: mph receivers: - NEO @@ -441,8 +485,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: mph receivers: - NEO @@ -461,8 +507,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 12 + min: + Uint: 0 + max: + Uint: 12 unit: "" receivers: - NEO @@ -481,8 +529,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 2 + min: + Uint: 0 + max: + Uint: 2 unit: "" receivers: - NEO diff --git a/tests/snapshots/dbc-cantools/issue_199_extended.snap b/tests/snapshots/dbc-cantools/issue_199_extended.snap index 75e612e..feb6b0c 100644 --- a/tests/snapshots/dbc-cantools/issue_199_extended.snap +++ b/tests/snapshots/dbc-cantools/issue_199_extended.snap @@ -96,8 +96,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - NEO @@ -116,8 +118,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -129,8 +133,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -142,8 +148,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -155,8 +163,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -168,8 +178,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -188,8 +200,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - NEO @@ -201,8 +215,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - NEO @@ -214,8 +230,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - NEO @@ -234,8 +252,10 @@ messages: value_type: Signed factor: 0.0625 offset: 0 - min: -540 - max: 540 + min: + Int: -540 + max: + Uint: 540 unit: deg receivers: - NEO @@ -254,8 +274,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - NEO @@ -274,8 +296,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - GMLAN @@ -287,8 +311,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - GMLAN @@ -301,8 +327,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 254 + min: + Uint: 0 + max: + Uint: 254 unit: "" receivers: - GMLAN @@ -315,8 +343,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - GMLAN @@ -336,8 +366,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - NEO @@ -349,8 +381,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - NEO @@ -369,8 +403,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 70 + min: + Uint: 0 + max: + Uint: 70 unit: yd/s receivers: - NEO @@ -382,8 +418,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 70 + min: + Uint: 0 + max: + Uint: 70 unit: yd/s receivers: - NEO @@ -395,8 +433,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 70 + min: + Uint: 0 + max: + Uint: 70 unit: yd/s receivers: - NEO @@ -408,8 +448,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 70 + min: + Uint: 0 + max: + Uint: 70 unit: yd/s receivers: - NEO @@ -428,8 +470,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: mph receivers: - NEO @@ -441,8 +485,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: mph receivers: - NEO @@ -461,8 +507,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 12 + min: + Uint: 0 + max: + Uint: 12 unit: "" receivers: - NEO @@ -481,8 +529,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 2 + min: + Uint: 0 + max: + Uint: 2 unit: "" receivers: - NEO diff --git a/tests/snapshots/dbc-cantools/issue_207_sig_plus.snap b/tests/snapshots/dbc-cantools/issue_207_sig_plus.snap index 40a175a..101b02a 100644 --- a/tests/snapshots/dbc-cantools/issue_207_sig_plus.snap +++ b/tests/snapshots/dbc-cantools/issue_207_sig_plus.snap @@ -47,8 +47,10 @@ messages: value_type: Signed factor: 1 offset: -128 - min: -128 - max: 127 + min: + Int: -128 + max: + Uint: 127 unit: "" receivers: - Vector__XXX @@ -60,8 +62,10 @@ messages: value_type: Signed factor: 1 offset: -128 - min: -128 - max: 127 + min: + Int: -128 + max: + Uint: 127 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_228.snap b/tests/snapshots/dbc-cantools/issue_228.snap index ef286b9..04546e3 100644 --- a/tests/snapshots/dbc-cantools/issue_228.snap +++ b/tests/snapshots/dbc-cantools/issue_228.snap @@ -49,8 +49,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -75,8 +79,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -94,8 +100,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -107,8 +115,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_62.snap b/tests/snapshots/dbc-cantools/issue_62.snap index a13af26..4ed4474 100644 --- a/tests/snapshots/dbc-cantools/issue_62.snap +++ b/tests/snapshots/dbc-cantools/issue_62.snap @@ -47,8 +47,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -60,8 +62,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -73,8 +77,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -86,8 +92,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -99,8 +107,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -112,8 +122,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 64255 + min: + Uint: 0 + max: + Uint: 64255 unit: Nm receivers: - Vector__XXX @@ -125,8 +137,10 @@ messages: value_type: Unsigned factor: 2 offset: 0 - min: 0 - max: 128510 + min: + Uint: 0 + max: + Uint: 128510 unit: kg receivers: - Vector__XXX @@ -138,8 +152,10 @@ messages: value_type: Unsigned factor: 8 offset: 0 - min: 0 - max: 2000 + min: + Uint: 0 + max: + Uint: 2000 unit: kPa receivers: - Vector__XXX @@ -151,8 +167,10 @@ messages: value_type: Unsigned factor: 8 offset: 0 - min: 0 - max: 2000 + min: + Uint: 0 + max: + Uint: 2000 unit: kPa receivers: - Vector__XXX @@ -164,8 +182,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 7 + min: + Uint: 0 + max: + Uint: 7 unit: "" receivers: - Vector__XXX @@ -177,8 +197,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 6425.5 + min: + Uint: 0 + max: + Double: 6425.5 unit: Pa/s receivers: - Vector__XXX @@ -190,8 +212,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -203,8 +227,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -216,8 +242,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -229,8 +257,10 @@ messages: value_type: Unsigned factor: 0.03125 offset: -273 - min: -273 - max: 1734.96875 + min: + Int: -273 + max: + Double: 1734.96875 unit: deg C receivers: - Vector__XXX @@ -242,8 +272,10 @@ messages: value_type: Unsigned factor: 4 offset: 0 - min: 0 - max: 1000 + min: + Uint: 0 + max: + Uint: 1000 unit: kPa receivers: - Vector__XXX @@ -255,8 +287,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -268,8 +302,10 @@ messages: value_type: Unsigned factor: 0.125 offset: 0 - min: 0 - max: 8031.875 + min: + Uint: 0 + max: + Double: 8031.875 unit: rpm receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_63.snap b/tests/snapshots/dbc-cantools/issue_63.snap index beefb3a..f9a10b0 100644 --- a/tests/snapshots/dbc-cantools/issue_63.snap +++ b/tests/snapshots/dbc-cantools/issue_63.snap @@ -47,8 +47,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 6425.5 + min: + Uint: 0 + max: + Double: 6425.5 unit: ohm receivers: - Vector__XXX @@ -60,8 +62,10 @@ messages: value_type: Unsigned factor: 250 offset: 0 - min: 0 - max: 62500 + min: + Uint: 0 + max: + Uint: 62500 unit: kohm receivers: - Vector__XXX @@ -73,8 +77,10 @@ messages: value_type: Unsigned factor: 0.03125 offset: -273 - min: -273 - max: 1734.96875 + min: + Int: -273 + max: + Double: 1734.96875 unit: �C receivers: - Vector__XXX @@ -86,8 +92,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 250 + min: + Uint: 0 + max: + Uint: 250 unit: "" receivers: - Vector__XXX @@ -99,8 +107,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Vector__XXX @@ -112,8 +122,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/issue_636_negative_scaling.snap b/tests/snapshots/dbc-cantools/issue_636_negative_scaling.snap index e8691c2..df32c0d 100644 --- a/tests/snapshots/dbc-cantools/issue_636_negative_scaling.snap +++ b/tests/snapshots/dbc-cantools/issue_636_negative_scaling.snap @@ -58,8 +58,10 @@ messages: value_type: Unsigned factor: -0.01 offset: 4100 - min: 4070 - max: 4100 + min: + Uint: 4070 + max: + Uint: 4100 unit: degK receivers: - PCM1 diff --git a/tests/snapshots/dbc-cantools/issue_725.snap b/tests/snapshots/dbc-cantools/issue_725.snap index ad51b8e..6283822 100644 --- a/tests/snapshots/dbc-cantools/issue_725.snap +++ b/tests/snapshots/dbc-cantools/issue_725.snap @@ -51,8 +51,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 250 + min: + Uint: 0 + max: + Uint: 250 unit: "" receivers: - Node2 diff --git a/tests/snapshots/dbc-cantools/j1939.snap b/tests/snapshots/dbc-cantools/j1939.snap index 43ead0d..1e1c8b9 100644 --- a/tests/snapshots/dbc-cantools/j1939.snap +++ b/tests/snapshots/dbc-cantools/j1939.snap @@ -51,8 +51,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Node2 @@ -71,8 +73,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Node1 diff --git a/tests/snapshots/dbc-cantools/long_names.snap b/tests/snapshots/dbc-cantools/long_names.snap index ca610dd..c95b0b9 100644 --- a/tests/snapshots/dbc-cantools/long_names.snap +++ b/tests/snapshots/dbc-cantools/long_names.snap @@ -77,8 +77,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -96,8 +98,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -116,8 +120,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -129,8 +135,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -142,8 +150,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - N12345678901234567890123456_0000 @@ -155,8 +165,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -168,8 +180,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -188,8 +202,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -201,8 +217,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -214,8 +232,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -227,8 +247,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -246,8 +268,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -259,8 +283,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/long_names_multiple_relations.snap b/tests/snapshots/dbc-cantools/long_names_multiple_relations.snap index 33cd9f4..17395fd 100644 --- a/tests/snapshots/dbc-cantools/long_names_multiple_relations.snap +++ b/tests/snapshots/dbc-cantools/long_names_multiple_relations.snap @@ -69,8 +69,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -82,8 +84,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -95,8 +99,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -115,8 +121,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Receiver_1 @@ -129,8 +137,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Receiver_2_zzzzzzzzzzzzzzzzzzzzz @@ -150,8 +160,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -179,8 +191,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -192,8 +206,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -205,8 +221,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -224,8 +242,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -237,8 +257,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -256,8 +278,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -269,8 +293,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/long_names_multiple_relations_dumped.snap b/tests/snapshots/dbc-cantools/long_names_multiple_relations_dumped.snap index f030cdc..e75c5ac 100644 --- a/tests/snapshots/dbc-cantools/long_names_multiple_relations_dumped.snap +++ b/tests/snapshots/dbc-cantools/long_names_multiple_relations_dumped.snap @@ -69,8 +69,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -82,8 +84,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -95,8 +99,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -115,8 +121,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Receiver_1 @@ -129,8 +137,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Receiver_2_zzzzzzzzzzzzzzzzzzzzz @@ -150,8 +160,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -179,8 +191,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -192,8 +206,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -205,8 +221,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -224,8 +242,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -237,8 +257,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -256,8 +278,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -269,8 +293,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/mod_name_len_dest.snap b/tests/snapshots/dbc-cantools/mod_name_len_dest.snap index 3cf7cde..46dc29a 100644 --- a/tests/snapshots/dbc-cantools/mod_name_len_dest.snap +++ b/tests/snapshots/dbc-cantools/mod_name_len_dest.snap @@ -50,8 +50,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/mod_name_len_src.snap b/tests/snapshots/dbc-cantools/mod_name_len_src.snap index 04ff148..67fb390 100644 --- a/tests/snapshots/dbc-cantools/mod_name_len_src.snap +++ b/tests/snapshots/dbc-cantools/mod_name_len_src.snap @@ -50,8 +50,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/motohawk.snap b/tests/snapshots/dbc-cantools/motohawk.snap index dcb6143..f6c3d62 100644 --- a/tests/snapshots/dbc-cantools/motohawk.snap +++ b/tests/snapshots/dbc-cantools/motohawk.snap @@ -51,8 +51,10 @@ messages: value_type: Signed factor: 0.01 offset: 250 - min: 229.52 - max: 270.47 + min: + Double: 229.52 + max: + Double: 270.47 unit: degK receivers: - PCM1 @@ -65,8 +67,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 5 + min: + Uint: 0 + max: + Uint: 5 unit: m receivers: - Vector__XXX @@ -78,8 +82,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "-" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/motohawk_fd.snap b/tests/snapshots/dbc-cantools/motohawk_fd.snap index cad512c..311519d 100644 --- a/tests/snapshots/dbc-cantools/motohawk_fd.snap +++ b/tests/snapshots/dbc-cantools/motohawk_fd.snap @@ -51,8 +51,10 @@ messages: value_type: Signed factor: 0.01 offset: 250 - min: 229.52 - max: 270.47 + min: + Double: 229.52 + max: + Double: 270.47 unit: degK receivers: - PCM1 @@ -65,8 +67,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 5 + min: + Uint: 0 + max: + Uint: 5 unit: m receivers: - Vector__XXX @@ -78,8 +82,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "-" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/motohawk_use_round.snap b/tests/snapshots/dbc-cantools/motohawk_use_round.snap index dcb6143..f6c3d62 100644 --- a/tests/snapshots/dbc-cantools/motohawk_use_round.snap +++ b/tests/snapshots/dbc-cantools/motohawk_use_round.snap @@ -51,8 +51,10 @@ messages: value_type: Signed factor: 0.01 offset: 250 - min: 229.52 - max: 270.47 + min: + Double: 229.52 + max: + Double: 270.47 unit: degK receivers: - PCM1 @@ -65,8 +67,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 5 + min: + Uint: 0 + max: + Uint: 5 unit: m receivers: - Vector__XXX @@ -78,8 +82,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "-" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/motohawk_with_comments.snap b/tests/snapshots/dbc-cantools/motohawk_with_comments.snap index d20dbcd..4b75535 100644 --- a/tests/snapshots/dbc-cantools/motohawk_with_comments.snap +++ b/tests/snapshots/dbc-cantools/motohawk_with_comments.snap @@ -51,8 +51,10 @@ messages: value_type: Signed factor: 0.01 offset: 250 - min: 229.52 - max: 270.47 + min: + Double: 229.52 + max: + Double: 270.47 unit: degK receivers: - PCM1 @@ -65,8 +67,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 5 + min: + Uint: 0 + max: + Uint: 5 unit: m receivers: - Vector__XXX @@ -78,8 +82,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "-" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/msxii_system_can.snap b/tests/snapshots/dbc-cantools/msxii_system_can.snap index db433f4..79395cc 100644 --- a/tests/snapshots/dbc-cantools/msxii_system_can.snap +++ b/tests/snapshots/dbc-cantools/msxii_system_can.snap @@ -43,8 +43,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -57,8 +59,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -71,8 +75,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -85,8 +91,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -99,8 +107,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -113,8 +123,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -127,8 +139,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -141,8 +155,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -155,8 +171,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -169,8 +187,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -183,8 +203,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -197,8 +219,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -211,8 +235,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -225,8 +251,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -239,8 +267,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -253,8 +283,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -267,8 +299,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -281,8 +315,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -295,8 +331,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -309,8 +347,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -323,8 +363,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -337,8 +379,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -351,8 +395,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -365,8 +411,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -379,8 +427,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -393,8 +443,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -407,8 +459,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -421,8 +475,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -435,8 +491,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -449,8 +507,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -463,8 +523,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -477,8 +539,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -491,8 +555,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -505,8 +571,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -519,8 +587,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -533,8 +603,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -547,8 +619,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -561,8 +635,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -575,8 +651,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -589,8 +667,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -603,8 +683,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -617,8 +699,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -631,8 +715,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -645,8 +731,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -659,8 +747,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -673,8 +763,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -687,8 +779,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -701,8 +795,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -715,8 +811,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -729,8 +827,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -743,8 +843,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -757,8 +859,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -771,8 +875,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -785,8 +891,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -799,8 +907,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -813,8 +923,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -827,8 +939,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -841,8 +955,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -855,8 +971,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -869,8 +987,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -883,8 +1003,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -897,8 +1019,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -911,8 +1035,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -925,8 +1051,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -939,8 +1067,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -953,8 +1083,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -967,8 +1099,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -981,8 +1115,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -995,8 +1131,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1009,8 +1147,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1023,8 +1163,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1037,8 +1179,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1050,8 +1194,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/multiple_senders.snap b/tests/snapshots/dbc-cantools/multiple_senders.snap index e749fc7..4d93d03 100644 --- a/tests/snapshots/dbc-cantools/multiple_senders.snap +++ b/tests/snapshots/dbc-cantools/multiple_senders.snap @@ -53,8 +53,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - FUM diff --git a/tests/snapshots/dbc-cantools/multiplex.snap b/tests/snapshots/dbc-cantools/multiplex.snap index 150f998..8ea8a25 100644 --- a/tests/snapshots/dbc-cantools/multiplex.snap +++ b/tests/snapshots/dbc-cantools/multiplex.snap @@ -48,8 +48,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -90,8 +96,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -104,8 +112,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -118,8 +128,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -132,8 +144,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -146,8 +160,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -160,8 +176,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -174,8 +192,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -188,8 +208,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -201,8 +223,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/multiplex_2.snap b/tests/snapshots/dbc-cantools/multiplex_2.snap index c5dd9eb..9c37894 100644 --- a/tests/snapshots/dbc-cantools/multiplex_2.snap +++ b/tests/snapshots/dbc-cantools/multiplex_2.snap @@ -48,8 +48,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -75,8 +79,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -95,8 +101,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -109,8 +117,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -122,8 +132,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -142,8 +154,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -156,8 +170,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -169,8 +185,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -183,8 +201,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -197,8 +217,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -211,8 +233,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -225,8 +249,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -239,8 +265,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -252,8 +280,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -272,8 +302,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: -1.34 - max: 1235 + min: + Double: -1.34 + max: + Uint: 1235 unit: "" receivers: - Vector__XXX @@ -286,8 +318,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: -340000000000000000000000000000000000000 - max: 340000000000000000000000000000000000000 + min: + Double: -340000000000000000000000000000000000000 + max: + Double: 340000000000000000000000000000000000000 unit: "" receivers: - Vector__XXX @@ -300,8 +334,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -313,8 +349,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 2 - max: 6 + min: + Uint: 2 + max: + Uint: 6 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/multiplex_2_dumped.snap b/tests/snapshots/dbc-cantools/multiplex_2_dumped.snap index ad01b3c..3ba4b64 100644 --- a/tests/snapshots/dbc-cantools/multiplex_2_dumped.snap +++ b/tests/snapshots/dbc-cantools/multiplex_2_dumped.snap @@ -48,8 +48,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -75,8 +79,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -95,8 +101,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -109,8 +117,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -122,8 +132,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -142,8 +154,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -156,8 +170,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -169,8 +185,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -183,8 +201,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -197,8 +217,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -211,8 +233,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -224,8 +248,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -238,8 +264,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -251,8 +279,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -271,8 +301,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: -1.34 - max: 1235 + min: + Double: -1.34 + max: + Uint: 1235 unit: "" receivers: - Vector__XXX @@ -285,8 +317,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: -340000000000000000000000000000000000000 - max: 340000000000000000000000000000000000000 + min: + Double: -340000000000000000000000000000000000000 + max: + Double: 340000000000000000000000000000000000000 unit: "" receivers: - Vector__XXX @@ -298,8 +332,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -311,8 +347,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 2 - max: 6 + min: + Uint: 2 + max: + Uint: 6 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/multiplex_choices.snap b/tests/snapshots/dbc-cantools/multiplex_choices.snap index 182960b..da426b4 100644 --- a/tests/snapshots/dbc-cantools/multiplex_choices.snap +++ b/tests/snapshots/dbc-cantools/multiplex_choices.snap @@ -48,8 +48,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -90,8 +96,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -104,8 +112,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -118,8 +128,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -132,8 +144,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -146,8 +160,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -160,8 +176,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -174,8 +192,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -188,8 +208,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -201,8 +223,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -221,8 +245,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -235,8 +261,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -249,8 +277,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -263,8 +293,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -277,8 +309,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -291,8 +325,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -305,8 +341,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -319,8 +357,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -333,8 +373,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -347,8 +389,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -361,8 +405,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -374,8 +420,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -394,8 +442,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -408,8 +458,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -422,8 +474,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -436,8 +490,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -449,8 +505,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/multiplex_choices_dumped.snap b/tests/snapshots/dbc-cantools/multiplex_choices_dumped.snap index 2b7f151..a321372 100644 --- a/tests/snapshots/dbc-cantools/multiplex_choices_dumped.snap +++ b/tests/snapshots/dbc-cantools/multiplex_choices_dumped.snap @@ -48,8 +48,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -90,8 +96,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -104,8 +112,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -118,8 +128,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -132,8 +144,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -146,8 +160,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -160,8 +176,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -174,8 +192,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -188,8 +208,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -201,8 +223,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -221,8 +245,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -235,8 +261,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -249,8 +277,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -263,8 +293,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -277,8 +309,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -291,8 +325,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -305,8 +341,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -319,8 +357,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -333,8 +373,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -347,8 +389,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -361,8 +405,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -374,8 +420,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -394,8 +442,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -408,8 +458,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -422,8 +474,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -436,8 +490,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -449,8 +505,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/multiplex_dumped.snap b/tests/snapshots/dbc-cantools/multiplex_dumped.snap index 992efca..51c72e1 100644 --- a/tests/snapshots/dbc-cantools/multiplex_dumped.snap +++ b/tests/snapshots/dbc-cantools/multiplex_dumped.snap @@ -48,8 +48,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -76,8 +80,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -90,8 +96,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -104,8 +112,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -118,8 +128,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -132,8 +144,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -146,8 +160,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -160,8 +176,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -174,8 +192,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -188,8 +208,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -201,8 +223,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/no_sender.snap b/tests/snapshots/dbc-cantools/no_sender.snap index ceab4f2..e1b5cb4 100644 --- a/tests/snapshots/dbc-cantools/no_sender.snap +++ b/tests/snapshots/dbc-cantools/no_sender.snap @@ -47,8 +47,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/open_actuator.snap b/tests/snapshots/dbc-cantools/open_actuator.snap index 58aa113..83db1c8 100644 --- a/tests/snapshots/dbc-cantools/open_actuator.snap +++ b/tests/snapshots/dbc-cantools/open_actuator.snap @@ -52,8 +52,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Actuator @@ -65,8 +67,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - Actuator @@ -78,8 +82,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Actuator @@ -91,8 +97,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 3 + min: + Uint: 0 + max: + Uint: 3 unit: "" receivers: - Actuator @@ -104,8 +112,10 @@ messages: value_type: Signed factor: 0.0154286 offset: 0 - min: -450 - max: 450 + min: + Int: -450 + max: + Uint: 450 unit: deg receivers: - Actuator @@ -117,8 +127,10 @@ messages: value_type: Signed factor: 0.0166667 offset: 0 - min: -8 - max: 8 + min: + Int: -8 + max: + Uint: 8 unit: N*m receivers: - Actuator @@ -130,8 +142,10 @@ messages: value_type: Unsigned factor: 0.186666 offset: 0 - min: 0 - max: 8 + min: + Uint: 0 + max: + Uint: 8 unit: N*m receivers: - Actuator @@ -150,8 +164,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Actuator @@ -163,8 +179,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - Actuator @@ -176,8 +194,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Actuator @@ -189,8 +209,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Actuator @@ -209,8 +231,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Driver @@ -223,8 +247,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - Driver @@ -236,8 +262,10 @@ messages: value_type: Signed factor: 0.015625 offset: 0 - min: -8 - max: 8 + min: + Int: -8 + max: + Uint: 8 unit: N*m receivers: - Driver @@ -249,8 +277,10 @@ messages: value_type: Unsigned factor: 0.125 offset: 0 - min: 0 - max: 8 + min: + Uint: 0 + max: + Uint: 8 unit: N*m receivers: - Driver @@ -269,8 +299,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Driver @@ -282,8 +314,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - Driver @@ -295,8 +329,10 @@ messages: value_type: Unsigned factor: 1 offset: -60 - min: -60 - max: 195 + min: + Int: -60 + max: + Uint: 195 unit: C receivers: - Driver @@ -315,8 +351,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Driver @@ -328,8 +366,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - Driver @@ -341,8 +381,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -20 - max: 20 + min: + Int: -20 + max: + Uint: 20 unit: N*m receivers: - Driver diff --git a/tests/snapshots/dbc-cantools/padding_bit_order.snap b/tests/snapshots/dbc-cantools/padding_bit_order.snap index 68416c5..25506de 100644 --- a/tests/snapshots/dbc-cantools/padding_bit_order.snap +++ b/tests/snapshots/dbc-cantools/padding_bit_order.snap @@ -50,8 +50,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 32767 + min: + Uint: 0 + max: + Uint: 32767 unit: "" receivers: - E1 @@ -63,8 +65,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - E1 @@ -76,8 +80,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 32767 + min: + Uint: 0 + max: + Uint: 32767 unit: "" receivers: - E1 @@ -89,8 +95,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - E1 @@ -109,8 +117,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - E1 @@ -122,8 +132,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 32767 + min: + Uint: 0 + max: + Uint: 32767 unit: "" receivers: - E1 @@ -135,8 +147,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - E1 @@ -148,8 +162,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 32767 + min: + Uint: 0 + max: + Uint: 32767 unit: "" receivers: - E1 @@ -168,8 +184,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - E1 @@ -181,8 +199,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - E1 @@ -194,8 +214,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 15 + min: + Uint: 0 + max: + Uint: 15 unit: "" receivers: - E1 @@ -214,8 +236,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 18446744073709552000 + min: + Uint: 0 + max: + Uint: 18446744073709551615 unit: "" receivers: - E1 @@ -234,8 +258,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 18446744073709552000 + min: + Uint: 0 + max: + Uint: 18446744073709551615 unit: "" receivers: - E1 diff --git a/tests/snapshots/dbc-cantools/sig_groups.snap b/tests/snapshots/dbc-cantools/sig_groups.snap index 18de6fc..fa0d7cb 100644 --- a/tests/snapshots/dbc-cantools/sig_groups.snap +++ b/tests/snapshots/dbc-cantools/sig_groups.snap @@ -50,8 +50,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Tester @@ -69,8 +71,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -82,8 +86,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -95,8 +101,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -108,8 +116,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -127,8 +137,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -140,8 +152,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -153,8 +167,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -172,8 +188,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -185,8 +203,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/sig_groups_del.snap b/tests/snapshots/dbc-cantools/sig_groups_del.snap index 2dfc27c..f93112b 100644 --- a/tests/snapshots/dbc-cantools/sig_groups_del.snap +++ b/tests/snapshots/dbc-cantools/sig_groups_del.snap @@ -50,8 +50,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Tester @@ -69,8 +71,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -82,8 +86,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -95,8 +101,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -108,8 +116,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -127,8 +137,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -140,8 +152,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -153,8 +167,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -172,8 +188,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -185,8 +203,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/sig_groups_out.snap b/tests/snapshots/dbc-cantools/sig_groups_out.snap index 6d2d614..76184b5 100644 --- a/tests/snapshots/dbc-cantools/sig_groups_out.snap +++ b/tests/snapshots/dbc-cantools/sig_groups_out.snap @@ -50,8 +50,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Tester @@ -69,8 +71,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -82,8 +86,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -95,8 +101,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -108,8 +116,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -127,8 +137,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -140,8 +152,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -153,8 +167,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -172,8 +188,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -185,8 +203,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/signed.snap b/tests/snapshots/dbc-cantools/signed.snap index 0e0afae..681cadd 100644 --- a/tests/snapshots/dbc-cantools/signed.snap +++ b/tests/snapshots/dbc-cantools/signed.snap @@ -47,8 +47,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -60,8 +62,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -73,8 +77,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -86,8 +92,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -99,8 +107,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -112,8 +122,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -125,8 +137,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -138,8 +152,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -157,8 +173,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -176,8 +194,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -195,8 +215,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -214,8 +236,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -233,8 +257,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -252,8 +278,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -271,8 +299,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -290,8 +320,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: -9223372036854780000 - max: 9223372036854780000 + min: + Double: -9223372036854780000 + max: + Double: 9223372036854780000 unit: "" receivers: - Vector__XXX @@ -309,8 +341,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: -4294967296 - max: 4294967295 + min: + Int: -4294967296 + max: + Uint: 4294967295 unit: "" receivers: - Vector__XXX @@ -328,8 +362,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/socialledge-written-by-cantools-with-default-sort-signals.snap b/tests/snapshots/dbc-cantools/socialledge-written-by-cantools-with-default-sort-signals.snap index bb46012..6265d7e 100644 --- a/tests/snapshots/dbc-cantools/socialledge-written-by-cantools-with-default-sort-signals.snap +++ b/tests/snapshots/dbc-cantools/socialledge-written-by-cantools-with-default-sort-signals.snap @@ -54,8 +54,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - SENSOR @@ -75,8 +77,10 @@ messages: value_type: Unsigned factor: 0.5 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -88,8 +92,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -101,8 +107,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -114,8 +122,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -134,8 +144,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 9 + min: + Uint: 0 + max: + Uint: 9 unit: "" receivers: - MOTOR @@ -147,8 +159,10 @@ messages: value_type: Signed factor: 1 offset: -5 - min: -5 - max: 5 + min: + Int: -5 + max: + Uint: 5 unit: "" receivers: - MOTOR @@ -167,8 +181,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: kph receivers: - DRIVER @@ -181,8 +197,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -203,8 +221,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -217,8 +237,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -232,8 +254,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -246,8 +270,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -261,8 +287,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -275,8 +303,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -290,8 +320,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -304,8 +336,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -318,8 +352,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -332,8 +368,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER diff --git a/tests/snapshots/dbc-cantools/socialledge-written-by-cantools-with-sort-signals-by-name.snap b/tests/snapshots/dbc-cantools/socialledge-written-by-cantools-with-sort-signals-by-name.snap index aa4235c..1ad41f5 100644 --- a/tests/snapshots/dbc-cantools/socialledge-written-by-cantools-with-sort-signals-by-name.snap +++ b/tests/snapshots/dbc-cantools/socialledge-written-by-cantools-with-sort-signals-by-name.snap @@ -54,8 +54,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - SENSOR @@ -75,8 +77,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -88,8 +92,10 @@ messages: value_type: Unsigned factor: 0.5 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -101,8 +107,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -114,8 +122,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -134,8 +144,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 9 + min: + Uint: 0 + max: + Uint: 9 unit: "" receivers: - MOTOR @@ -147,8 +159,10 @@ messages: value_type: Signed factor: 1 offset: -5 - min: -5 - max: 5 + min: + Int: -5 + max: + Uint: 5 unit: "" receivers: - MOTOR @@ -167,8 +181,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: kph receivers: - DRIVER @@ -181,8 +197,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -202,8 +220,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -217,8 +237,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -232,8 +254,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -246,8 +270,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -261,8 +287,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -275,8 +303,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -289,8 +319,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -303,8 +335,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -317,8 +351,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -332,8 +368,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER diff --git a/tests/snapshots/dbc-cantools/socialledge-written-by-cantools.snap b/tests/snapshots/dbc-cantools/socialledge-written-by-cantools.snap index b01aafd..ba9852a 100644 --- a/tests/snapshots/dbc-cantools/socialledge-written-by-cantools.snap +++ b/tests/snapshots/dbc-cantools/socialledge-written-by-cantools.snap @@ -54,8 +54,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - SENSOR @@ -75,8 +77,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -88,8 +92,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -101,8 +107,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -114,8 +122,10 @@ messages: value_type: Unsigned factor: 0.5 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -134,8 +144,10 @@ messages: value_type: Signed factor: 1 offset: -5 - min: -5 - max: 5 + min: + Int: -5 + max: + Uint: 5 unit: "" receivers: - MOTOR @@ -147,8 +159,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 9 + min: + Uint: 0 + max: + Uint: 9 unit: "" receivers: - MOTOR @@ -167,8 +181,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -181,8 +197,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: kph receivers: - DRIVER @@ -202,8 +220,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -216,8 +236,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -231,8 +253,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -246,8 +270,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -261,8 +287,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -276,8 +304,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -291,8 +321,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -305,8 +337,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -319,8 +353,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -333,8 +369,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG diff --git a/tests/snapshots/dbc-cantools/socialledge.snap b/tests/snapshots/dbc-cantools/socialledge.snap index b01aafd..ba9852a 100644 --- a/tests/snapshots/dbc-cantools/socialledge.snap +++ b/tests/snapshots/dbc-cantools/socialledge.snap @@ -54,8 +54,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - SENSOR @@ -75,8 +77,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -88,8 +92,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -101,8 +107,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -114,8 +122,10 @@ messages: value_type: Unsigned factor: 0.5 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -134,8 +144,10 @@ messages: value_type: Signed factor: 1 offset: -5 - min: -5 - max: 5 + min: + Int: -5 + max: + Uint: 5 unit: "" receivers: - MOTOR @@ -147,8 +159,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 9 + min: + Uint: 0 + max: + Uint: 9 unit: "" receivers: - MOTOR @@ -167,8 +181,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -181,8 +197,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: kph receivers: - DRIVER @@ -202,8 +220,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -216,8 +236,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -231,8 +253,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -246,8 +270,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -261,8 +287,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -276,8 +304,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DRIVER @@ -291,8 +321,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -305,8 +337,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -319,8 +353,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG @@ -333,8 +369,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - DBG diff --git a/tests/snapshots/dbc-cantools/test_extended_id_dump.snap b/tests/snapshots/dbc-cantools/test_extended_id_dump.snap index fd40fa5..57c7159 100644 --- a/tests/snapshots/dbc-cantools/test_extended_id_dump.snap +++ b/tests/snapshots/dbc-cantools/test_extended_id_dump.snap @@ -47,8 +47,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -66,8 +68,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/test_multiplex_dump.snap b/tests/snapshots/dbc-cantools/test_multiplex_dump.snap index 765032c..1c9b32e 100644 --- a/tests/snapshots/dbc-cantools/test_multiplex_dump.snap +++ b/tests/snapshots/dbc-cantools/test_multiplex_dump.snap @@ -47,8 +47,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -61,8 +63,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -74,8 +78,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/timing.snap b/tests/snapshots/dbc-cantools/timing.snap index cc76031..878b315 100644 --- a/tests/snapshots/dbc-cantools/timing.snap +++ b/tests/snapshots/dbc-cantools/timing.snap @@ -51,8 +51,10 @@ messages: value_type: Signed factor: 0.01 offset: 250 - min: 229.53 - max: 270.47 + min: + Double: 229.53 + max: + Double: 270.47 unit: degK receivers: - Receiver @@ -71,8 +73,10 @@ messages: value_type: Signed factor: 0.01 offset: 250 - min: 229.53 - max: 270.47 + min: + Double: 229.53 + max: + Double: 270.47 unit: degK receivers: - Receiver diff --git a/tests/snapshots/dbc-cantools/val_table.snap b/tests/snapshots/dbc-cantools/val_table.snap index a39d596..335840c 100644 --- a/tests/snapshots/dbc-cantools/val_table.snap +++ b/tests/snapshots/dbc-cantools/val_table.snap @@ -65,8 +65,10 @@ messages: value_type: Signed factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/dbc-cantools/variable_dlc.snap b/tests/snapshots/dbc-cantools/variable_dlc.snap index 41d3082..d32946f 100644 --- a/tests/snapshots/dbc-cantools/variable_dlc.snap +++ b/tests/snapshots/dbc-cantools/variable_dlc.snap @@ -21,8 +21,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Test @@ -34,8 +36,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Test @@ -47,8 +51,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Test @@ -67,8 +73,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Test @@ -80,8 +88,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Test @@ -93,8 +103,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Test @@ -106,8 +118,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Test @@ -119,8 +133,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Test diff --git a/tests/snapshots/dbc-cantools/vehicle.snap b/tests/snapshots/dbc-cantools/vehicle.snap index 5ce9e8b..4d60d7d 100644 --- a/tests/snapshots/dbc-cantools/vehicle.snap +++ b/tests/snapshots/dbc-cantools/vehicle.snap @@ -49,8 +49,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -62,8 +64,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -75,8 +79,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -88,8 +94,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -101,8 +109,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -120,8 +130,10 @@ messages: value_type: Signed factor: 0.00001 offset: 0 - min: -20000 - max: 20000 + min: + Int: -20000 + max: + Uint: 20000 unit: m/s receivers: - Vector__XXX @@ -133,8 +145,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -146,8 +160,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -165,8 +181,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX @@ -178,8 +196,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 604800 + min: + Uint: 0 + max: + Uint: 604800 unit: s receivers: - Vector__XXX @@ -191,8 +211,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -204,8 +226,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -217,8 +241,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -236,8 +262,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -1000 - max: 100000 + min: + Int: -1000 + max: + Uint: 100000 unit: m receivers: - Vector__XXX @@ -249,8 +277,10 @@ messages: value_type: Signed factor: 0.0000001 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -268,8 +298,10 @@ messages: value_type: Signed factor: 0.0000001 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -281,8 +313,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -294,8 +328,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -307,8 +343,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -320,8 +358,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -333,8 +373,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -346,8 +388,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -365,8 +409,10 @@ messages: value_type: Unsigned factor: 0.0001 offset: 0 - min: 0 - max: 1675 + min: + Uint: 0 + max: + Uint: 1675 unit: m/s receivers: - Vector__XXX @@ -378,8 +424,10 @@ messages: value_type: Unsigned factor: 0.0001 offset: 0 - min: 0 - max: 1675 + min: + Uint: 0 + max: + Uint: 1675 unit: m/s receivers: - Vector__XXX @@ -391,8 +439,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -404,8 +454,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -417,8 +469,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -436,8 +490,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -455,8 +511,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -468,8 +526,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -481,8 +541,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -494,8 +556,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -513,8 +577,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -526,8 +592,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -539,8 +607,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -552,8 +622,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -571,8 +643,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -584,8 +658,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -597,8 +673,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -610,8 +688,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -629,8 +709,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -642,8 +724,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -655,8 +739,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -668,8 +754,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -687,8 +775,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -700,8 +790,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -713,8 +805,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -726,8 +820,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -745,8 +841,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -758,8 +856,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -771,8 +871,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -784,8 +886,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -803,8 +907,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -816,8 +922,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -829,8 +937,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -842,8 +952,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -861,8 +973,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -874,8 +988,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -887,8 +1003,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -900,8 +1018,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -919,8 +1039,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -938,8 +1060,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -957,8 +1081,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -976,8 +1102,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -995,8 +1123,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1014,8 +1144,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1033,8 +1165,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1052,8 +1186,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1071,8 +1207,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1090,8 +1228,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1109,8 +1249,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1128,8 +1270,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1147,8 +1291,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1166,8 +1312,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1185,8 +1333,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1204,8 +1354,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1223,8 +1375,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1242,8 +1396,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1261,8 +1417,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1280,8 +1438,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1299,8 +1459,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1318,8 +1480,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1337,8 +1501,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1356,8 +1522,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1375,8 +1543,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1394,8 +1564,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1413,8 +1585,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1432,8 +1606,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1451,8 +1627,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1470,8 +1648,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1489,8 +1669,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1508,8 +1690,10 @@ messages: value_type: Unsigned factor: 0.0001 offset: 0 - min: 0 - max: 1675 + min: + Uint: 0 + max: + Uint: 1675 unit: m/s receivers: - Vector__XXX @@ -1521,8 +1705,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1540,8 +1726,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: "%" receivers: - Vector__XXX @@ -1553,8 +1741,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 100 + min: + Uint: 0 + max: + Uint: 100 unit: "%" receivers: - Vector__XXX @@ -1566,8 +1756,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -1579,8 +1771,10 @@ messages: value_type: Unsigned factor: 0.0001 offset: 0 - min: 0 - max: 1675 + min: + Uint: 0 + max: + Uint: 1675 unit: m/s receivers: - Vector__XXX @@ -1592,8 +1786,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1605,8 +1801,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -1624,8 +1822,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 4294967 + min: + Uint: 0 + max: + Uint: 4294967 unit: m receivers: - Vector__XXX @@ -1637,8 +1837,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 4294967 + min: + Uint: 0 + max: + Uint: 4294967 unit: m receivers: - Vector__XXX @@ -1656,8 +1858,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -2147483.648 - max: 2147483.647 + min: + Double: -2147483.648 + max: + Double: 2147483.647 unit: m receivers: - Vector__XXX @@ -1669,8 +1873,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -2147483.648 - max: 2147483.647 + min: + Double: -2147483.648 + max: + Double: 2147483.647 unit: m receivers: - Vector__XXX @@ -1688,8 +1894,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 4294967 + min: + Uint: 0 + max: + Uint: 4294967 unit: m receivers: - Vector__XXX @@ -1707,8 +1915,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 167772 + min: + Uint: 0 + max: + Uint: 167772 unit: s receivers: - Vector__XXX @@ -1720,8 +1930,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -1733,8 +1945,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -1746,8 +1960,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1759,8 +1975,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1772,8 +1990,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1791,8 +2011,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1810,8 +2032,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1829,8 +2053,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1848,8 +2074,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1867,8 +2095,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1886,8 +2116,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1905,8 +2137,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1924,8 +2158,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1943,8 +2179,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1962,8 +2200,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -1981,8 +2221,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2000,8 +2242,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2019,8 +2263,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2038,8 +2284,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2057,8 +2305,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2076,8 +2326,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2095,8 +2347,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2114,8 +2368,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2133,8 +2389,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2152,8 +2410,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2171,8 +2431,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2190,8 +2452,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2209,8 +2473,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2228,8 +2494,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2247,8 +2515,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2266,8 +2536,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2285,8 +2557,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2304,8 +2578,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2323,8 +2599,10 @@ messages: value_type: Unsigned factor: 10 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2342,8 +2620,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2361,8 +2641,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2380,8 +2662,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2399,8 +2683,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2418,8 +2704,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2437,8 +2725,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2456,8 +2746,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2475,8 +2767,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2494,8 +2788,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2513,8 +2809,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2532,8 +2830,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2551,8 +2851,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2570,8 +2872,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2589,8 +2893,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2608,8 +2914,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2627,8 +2935,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2646,8 +2956,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2665,8 +2977,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2684,8 +2998,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2703,8 +3019,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2722,8 +3040,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2741,8 +3061,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2760,8 +3082,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2779,8 +3103,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2798,8 +3124,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2817,8 +3145,10 @@ messages: value_type: Unsigned factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2836,8 +3166,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2855,8 +3187,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2874,8 +3208,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2893,8 +3229,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2912,8 +3250,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2931,8 +3271,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2950,8 +3292,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2969,8 +3313,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -2988,8 +3334,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3007,8 +3355,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3026,8 +3376,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3045,8 +3397,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3064,8 +3418,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3083,8 +3439,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3102,8 +3460,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3121,8 +3481,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3140,8 +3502,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3159,8 +3523,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3178,8 +3544,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3197,8 +3565,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3216,8 +3586,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3235,8 +3607,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3254,8 +3628,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3273,8 +3649,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3292,8 +3670,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3311,8 +3691,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3330,8 +3712,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3349,8 +3733,10 @@ messages: value_type: Signed factor: 0.1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3368,8 +3754,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3387,8 +3775,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3406,8 +3796,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3425,8 +3817,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3444,8 +3838,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3463,8 +3859,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3482,8 +3880,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3501,8 +3901,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3520,8 +3922,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3539,8 +3943,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3558,8 +3964,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3577,8 +3985,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3596,8 +4006,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3615,8 +4027,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3634,8 +4048,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3653,8 +4069,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3672,8 +4090,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3691,8 +4111,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3710,8 +4132,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3729,8 +4153,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3748,8 +4174,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3767,8 +4195,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3786,8 +4216,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3805,8 +4237,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3824,8 +4258,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3843,8 +4279,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3862,8 +4300,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3881,8 +4321,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3900,8 +4342,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3919,8 +4363,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3938,8 +4384,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -3957,8 +4405,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -3970,8 +4420,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -3983,8 +4435,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -3996,8 +4450,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4009,8 +4465,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -4022,8 +4480,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -4035,8 +4495,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -4054,8 +4516,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -4067,8 +4531,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -4080,8 +4546,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4099,8 +4567,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4112,8 +4582,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4131,8 +4603,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4144,8 +4618,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4157,8 +4633,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4176,8 +4654,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -4189,8 +4669,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -4202,8 +4684,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4221,8 +4705,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4234,8 +4720,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4253,8 +4741,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4266,8 +4756,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4279,8 +4771,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4298,8 +4792,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -4311,8 +4807,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -4324,8 +4822,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4343,8 +4843,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4356,8 +4858,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4375,8 +4879,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4388,8 +4894,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4401,8 +4909,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4420,8 +4930,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -4433,8 +4945,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -4446,8 +4960,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4465,8 +4981,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4478,8 +4996,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4497,8 +5017,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4510,8 +5032,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4523,8 +5047,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -32.768 - max: 32.767 + min: + Double: -32.768 + max: + Double: 32.767 unit: m receivers: - Vector__XXX @@ -4542,8 +5068,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -360 - max: 360 + min: + Int: -360 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -4555,8 +5083,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4568,8 +5098,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -360 - max: 360 + min: + Int: -360 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -4581,8 +5113,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4594,8 +5128,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4607,8 +5143,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4626,8 +5164,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4639,8 +5179,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4652,8 +5194,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4665,8 +5209,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4684,8 +5230,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4697,8 +5245,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4710,8 +5260,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4723,8 +5275,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4736,8 +5290,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4755,8 +5311,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4768,8 +5326,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4781,8 +5341,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4800,8 +5362,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4813,8 +5377,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -4826,8 +5392,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4839,8 +5407,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4852,8 +5422,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4871,8 +5443,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -10000000 - max: 10000000 + min: + Int: -10000000 + max: + Uint: 10000000 unit: m receivers: - Vector__XXX @@ -4884,8 +5458,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -10000000 - max: 10000000 + min: + Int: -10000000 + max: + Uint: 10000000 unit: m receivers: - Vector__XXX @@ -4903,8 +5479,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -10000000 - max: 10000000 + min: + Int: -10000000 + max: + Uint: 10000000 unit: m receivers: - Vector__XXX @@ -4916,8 +5494,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4929,8 +5509,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4942,8 +5524,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -4955,8 +5539,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4968,8 +5554,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -4981,8 +5569,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5000,8 +5590,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -1000 - max: 100000 + min: + Int: -1000 + max: + Uint: 100000 unit: m receivers: - Vector__XXX @@ -5013,8 +5605,10 @@ messages: value_type: Signed factor: 0.0000001 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -5032,8 +5626,10 @@ messages: value_type: Signed factor: 0.0000001 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -5045,8 +5641,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5058,8 +5656,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5071,8 +5671,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5084,8 +5686,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5097,8 +5701,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5110,8 +5716,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5129,8 +5737,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -5142,8 +5752,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5155,8 +5767,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 360 + min: + Uint: 0 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -5168,8 +5782,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5181,8 +5797,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5194,8 +5812,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5213,8 +5833,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -5226,8 +5848,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5239,8 +5863,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -5252,8 +5878,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5265,8 +5893,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5278,8 +5908,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5297,8 +5929,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5316,8 +5950,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -360 - max: 360 + min: + Int: -360 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -5329,8 +5965,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -360 - max: 360 + min: + Int: -360 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -5342,8 +5980,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -360 - max: 360 + min: + Int: -360 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -5355,8 +5995,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5368,8 +6010,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5381,8 +6025,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5394,8 +6040,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5413,8 +6061,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 604800 + min: + Uint: 0 + max: + Uint: 604800 unit: s receivers: - Vector__XXX @@ -5426,8 +6076,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5439,8 +6091,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5452,8 +6106,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5465,8 +6121,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5478,8 +6136,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5491,8 +6151,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5504,8 +6166,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5517,8 +6181,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5530,8 +6196,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -5549,8 +6217,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -5562,8 +6232,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5575,8 +6247,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 360 + min: + Uint: 0 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -5588,8 +6262,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5601,8 +6277,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5614,8 +6292,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5633,8 +6313,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 4294967 + min: + Uint: 0 + max: + Uint: 4294967 unit: m receivers: - Vector__XXX @@ -5646,8 +6328,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 167772 + min: + Uint: 0 + max: + Uint: 167772 unit: s receivers: - Vector__XXX @@ -5659,8 +6343,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -5672,8 +6358,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -5691,8 +6379,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 4294967 + min: + Uint: 0 + max: + Uint: 4294967 unit: m receivers: - Vector__XXX @@ -5704,8 +6394,10 @@ messages: value_type: Unsigned factor: 0.01 offset: 0 - min: 0 - max: 167772 + min: + Uint: 0 + max: + Uint: 167772 unit: s receivers: - Vector__XXX @@ -5717,8 +6409,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -5730,8 +6424,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -5749,8 +6445,10 @@ messages: value_type: Unsigned factor: 0.000001 offset: 0 - min: 0 - max: 604800 + min: + Uint: 0 + max: + Uint: 604800 unit: s receivers: - Vector__XXX @@ -5762,8 +6460,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5775,8 +6475,10 @@ messages: value_type: Unsigned factor: 1 offset: 1 - min: 0 - max: 128 + min: + Uint: 0 + max: + Uint: 128 unit: "" receivers: - Vector__XXX @@ -5788,8 +6490,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5801,8 +6505,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -5820,8 +6526,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -327 - max: 327 + min: + Int: -327 + max: + Uint: 327 unit: degrees/s receivers: - Vector__XXX @@ -5833,8 +6541,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -327 - max: 327 + min: + Int: -327 + max: + Uint: 327 unit: degrees/s receivers: - Vector__XXX @@ -5846,8 +6556,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -327 - max: 327 + min: + Int: -327 + max: + Uint: 327 unit: degrees/s receivers: - Vector__XXX @@ -5859,8 +6571,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -5872,8 +6586,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5885,8 +6601,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5898,8 +6616,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -5917,8 +6637,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -5930,8 +6652,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -5943,8 +6667,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -5956,8 +6682,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -5969,8 +6697,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -5982,8 +6712,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -5995,8 +6727,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -6014,8 +6748,10 @@ messages: value_type: Signed factor: 0.00001 offset: 0 - min: -20000 - max: 20000 + min: + Int: -20000 + max: + Uint: 20000 unit: m/s receivers: - Vector__XXX @@ -6027,8 +6763,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6040,8 +6778,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -6059,8 +6799,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: mm receivers: - Vector__XXX @@ -6072,8 +6814,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -360 - max: 360 + min: + Int: -360 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -6085,8 +6829,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -360 - max: 360 + min: + Int: -360 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -6098,8 +6844,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6111,8 +6859,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6124,8 +6874,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6137,8 +6889,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6156,8 +6910,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -6169,8 +6925,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -6182,8 +6940,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -360 - max: 360 + min: + Int: -360 + max: + Uint: 360 unit: degrees receivers: - Vector__XXX @@ -6195,8 +6955,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6208,8 +6970,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6221,8 +6985,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6234,8 +7000,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6253,8 +7021,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -6266,8 +7036,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -6279,8 +7051,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6292,8 +7066,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6305,8 +7081,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6324,8 +7102,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6337,8 +7117,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 16 + min: + Uint: 0 + max: + Uint: 16 unit: "" receivers: - Vector__XXX @@ -6350,8 +7132,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 16 + min: + Uint: 0 + max: + Uint: 16 unit: "" receivers: - Vector__XXX @@ -6363,8 +7147,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 16 + min: + Uint: 0 + max: + Uint: 16 unit: "" receivers: - Vector__XXX @@ -6376,8 +7162,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6389,8 +7177,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6402,8 +7192,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6415,8 +7207,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6434,8 +7228,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -10000000 - max: 10000000 + min: + Int: -10000000 + max: + Uint: 10000000 unit: m receivers: - Vector__XXX @@ -6447,8 +7243,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -10000000 - max: 10000000 + min: + Int: -10000000 + max: + Uint: 10000000 unit: m receivers: - Vector__XXX @@ -6466,8 +7264,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -10000000 - max: 10000000 + min: + Int: -10000000 + max: + Uint: 10000000 unit: m receivers: - Vector__XXX @@ -6479,8 +7279,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6492,8 +7294,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6505,8 +7309,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6518,8 +7324,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6531,8 +7339,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6544,8 +7354,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6563,8 +7375,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -1000 - max: 100000 + min: + Int: -1000 + max: + Uint: 100000 unit: m receivers: - Vector__XXX @@ -6576,8 +7390,10 @@ messages: value_type: Signed factor: 0.0000001 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -6595,8 +7411,10 @@ messages: value_type: Signed factor: 0.0000001 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -6608,8 +7426,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6621,8 +7441,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6634,8 +7456,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6647,8 +7471,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6660,8 +7486,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6673,8 +7501,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6692,8 +7522,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -90 - max: 90 + min: + Int: -90 + max: + Uint: 90 unit: degrees receivers: - Vector__XXX @@ -6705,8 +7537,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6718,8 +7552,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -180 - max: 180 + min: + Int: -180 + max: + Uint: 180 unit: degrees receivers: - Vector__XXX @@ -6731,8 +7567,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6744,8 +7582,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6757,8 +7597,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6776,8 +7618,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -6789,8 +7633,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -6802,8 +7648,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6815,8 +7663,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6834,8 +7684,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -6847,8 +7699,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6860,8 +7714,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6873,8 +7729,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6886,8 +7744,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6905,8 +7765,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -6918,8 +7780,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6931,8 +7795,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -6950,8 +7816,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -6963,8 +7831,10 @@ messages: value_type: Signed factor: 0.0001 offset: 0 - min: -838 - max: 838 + min: + Int: -838 + max: + Uint: 838 unit: m/s receivers: - Vector__XXX @@ -6976,8 +7846,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -6989,8 +7861,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -7002,8 +7876,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -7021,8 +7897,10 @@ messages: value_type: Unsigned factor: 0.0001 offset: 0 - min: 0 - max: 1675 + min: + Uint: 0 + max: + Uint: 1675 unit: m/s receivers: - Vector__XXX @@ -7034,8 +7912,10 @@ messages: value_type: Unsigned factor: 0.0001 offset: 0 - min: 0 - max: 1675 + min: + Uint: 0 + max: + Uint: 1675 unit: m/s receivers: - Vector__XXX @@ -7047,8 +7927,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -7060,8 +7942,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -7073,8 +7957,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -7092,8 +7978,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX @@ -7105,8 +7993,10 @@ messages: value_type: Unsigned factor: 0.001 offset: 0 - min: 0 - max: 604800 + min: + Uint: 0 + max: + Uint: 604800 unit: s receivers: - Vector__XXX @@ -7118,8 +8008,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -7131,8 +8023,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -7144,8 +8038,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -7163,8 +8059,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -7176,8 +8074,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -7189,8 +8089,10 @@ messages: value_type: Signed factor: 0.001 offset: 0 - min: -65 - max: 65 + min: + Int: -65 + max: + Uint: 65 unit: g receivers: - Vector__XXX @@ -7202,8 +8104,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 255 + min: + Uint: 0 + max: + Uint: 255 unit: "" receivers: - Vector__XXX @@ -7215,8 +8119,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -7228,8 +8134,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -7241,8 +8149,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -7260,8 +8170,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -327 - max: 327 + min: + Int: -327 + max: + Uint: 327 unit: degrees/s receivers: - Vector__XXX @@ -7273,8 +8185,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -327 - max: 327 + min: + Int: -327 + max: + Uint: 327 unit: degrees/s receivers: - Vector__XXX @@ -7286,8 +8200,10 @@ messages: value_type: Signed factor: 0.01 offset: 0 - min: -327 - max: 327 + min: + Int: -327 + max: + Uint: 327 unit: degrees/s receivers: - Vector__XXX @@ -7299,8 +8215,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -7312,8 +8230,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -7325,8 +8245,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX @@ -7338,8 +8260,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 1 + min: + Uint: 0 + max: + Uint: 1 unit: "" receivers: - Vector__XXX diff --git a/tests/snapshots/oxibus/bug_dbc-codegen_98.snap b/tests/snapshots/oxibus/bug_dbc-codegen_98.snap index 3ff07e4..4c147ef 100644 --- a/tests/snapshots/oxibus/bug_dbc-codegen_98.snap +++ b/tests/snapshots/oxibus/bug_dbc-codegen_98.snap @@ -20,8 +20,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -34,8 +36,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX @@ -48,8 +52,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX @@ -62,8 +68,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX @@ -76,8 +84,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX @@ -95,8 +105,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 0 + min: + Uint: 0 + max: + Uint: 0 unit: "" receivers: - Vector__XXX @@ -109,8 +121,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX @@ -123,8 +137,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX @@ -137,8 +153,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX @@ -151,8 +169,10 @@ messages: value_type: Unsigned factor: 1 offset: 0 - min: 0 - max: 65535 + min: + Uint: 0 + max: + Uint: 65535 unit: "" receivers: - Vector__XXX