macro_rules! get_attributes {
() => {
{
use crate::asterix::uap::common::datatypes::{AsterixAttribute, AttributeType};
vec![
AsterixAttribute::new(2, 1, 16, 1, "Calculated Groundspeed".to_string(), "ground_speed".to_string(), AttributeType::UInt16),
AsterixAttribute::new(2, 2, 16, 1, "Calculated Heading".to_string(),"heading".to_string(), AttributeType::UInt16)
]
}
};
}
pub(crate) use get_attributes;