mil_std_1553b 0.5.0

MIL STD 1553B message parsing and types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
//! Error enums and flags

/// A result type which uses the [Error] enum as the error type.
pub type Result<T> = core::result::Result<T, Error>;

/// Calculate a parity bit given a u16 word value
///
/// MIL STD 1553B uses an odd parity bit (1 if the
/// bit count of the data is even, 0 if not)[^1].
///
/// [^1]: [MIL-STD-1553 Tutorial](http://www.horntech.cn/techDocuments/MIL-STD-1553Tutorial.pdf)
#[inline]
#[must_use = "Returned value is not used"]
pub(crate) const fn parity(v: u16) -> u8 {
    match v.count_ones() % 2 {
        0 => 1,
        _ => 0,
    }
}

/// An error deriving from the software itself, rather than a terminal.
///
/// These errors occur during parsing or other calculations when those
/// calculations fail. The [Error::SystemError] variant
/// contains any errors generated by the 1553 bus.
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
#[repr(u8)]
pub enum Error {
    /// An index or range was out of bounds
    OutOfBounds,

    /// A packet was found to be invalid
    InvalidPacket,

    /// A word was found to be invalid
    InvalidWord,

    /// The given string is the wrong size or encoding
    InvalidString,

    /// The message is full and cannot accept words
    MessageFull,

    /// A message cannot begin with a data word
    DataFirst,

    /// Cannot add header words after the first word
    HeaderNotFirst,

    /// The message is invalid
    InvalidMessage,

    /// An error from a terminal (see [SystemError])
    SystemError(SystemError),
}

/// An error deriving from a remote terminal or bus controller.
///
/// These errors are generated during runtime by terminals and
/// provided in messages on the bus.
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
#[repr(u8)]
pub enum SystemError {
    /// No error
    None,

    /// A terminal error (see [TerminalError] for more information)
    Terminal(TerminalError),

    /// A subsystem error (see [SubsystemError] for more information)
    Subsystem(SubsystemError),

    /// A message error (see [MessageError] for more information)
    Message(MessageError),
}

/// This flag is to inform the bus controller of faults in a remote terminal
///
/// The error bit flag defined here maps to the Terminal Flag bit at bit
/// time 19 (index 15). It is used to notify the bus controller of a fault
/// or failure within the *entire* remote terminal, rather than only the
/// channel on which the error was received.
///
/// This flag is described on page 35 in the MIL-STD-1553 Tutorial[^1].
///
/// [^1]: [MIL-STD-1553 Tutorial](http://www.horntech.cn/techDocuments/MIL-STD-1553Tutorial.pdf)
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
#[repr(u8)]
pub enum TerminalError {
    /// No error
    None = 0,

    /// An error has occurred
    Error = 1,
}

impl TerminalError {
    /// Check if the enum is the 'None' variant
    #[must_use = "Returned value is not used"]
    pub const fn is_none(&self) -> bool {
        matches!(self, Self::None)
    }

    /// Check if the enum is the 'Error' variant
    #[must_use = "Returned value is not used"]
    pub const fn is_error(&self) -> bool {
        matches!(self, Self::Error)
    }
}

impl From<u8> for TerminalError {
    fn from(value: u8) -> Self {
        match value {
            1 => Self::Error,
            _ => Self::None,
        }
    }
}

impl From<TerminalError> for u8 {
    fn from(value: TerminalError) -> Self {
        match value {
            TerminalError::Error => 1,
            TerminalError::None => 0,
        }
    }
}

impl From<u16> for TerminalError {
    fn from(value: u16) -> Self {
        Self::from(value as u8)
    }
}

impl From<TerminalError> for u16 {
    fn from(value: TerminalError) -> Self {
        u8::from(value) as u16
    }
}

/// This flag provides health data regarding subsystems of a remote terminal.
///
/// The Subsystem Flag bit located at bit time 17 (index 13) is used to provide
/// “health” data regarding the subsystems to which the remote terminal is connected.
///
/// Multiple subsystems may logically OR their bits together to form a composite
/// health indicator. This indicator only informs the bus controller that a fault
/// or failure exists, and further information must be obtained in some other fashion.
///
/// This flag is described on page 34 in the MIL-STD-1553 Tutorial[^1].
///
/// [^1]: [MIL-STD-1553 Tutorial](http://www.horntech.cn/techDocuments/MIL-STD-1553Tutorial.pdf)
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
#[repr(u8)]
pub enum SubsystemError {
    /// No error
    None = 0,

    /// An error has occurred
    Error = 1,
}

impl SubsystemError {
    /// Check if the enum is 'None' variant
    #[must_use = "Returned value is not used"]
    pub const fn is_none(&self) -> bool {
        matches!(self, Self::None)
    }

    /// Check if the enum is 'Error' variant
    #[must_use = "Returned value is not used"]
    pub const fn is_error(&self) -> bool {
        matches!(self, Self::Error)
    }
}

impl From<u8> for SubsystemError {
    fn from(value: u8) -> Self {
        match value {
            1 => Self::Error,
            _ => Self::None,
        }
    }
}

impl From<SubsystemError> for u8 {
    fn from(value: SubsystemError) -> Self {
        match value {
            SubsystemError::Error => 1,
            SubsystemError::None => 0,
        }
    }
}

impl From<u16> for SubsystemError {
    fn from(value: u16) -> Self {
        Self::from(value as u8)
    }
}

impl From<SubsystemError> for u16 {
    fn from(value: SubsystemError) -> Self {
        u8::from(value) as u16
    }
}

/// This flag is set when a receiving terminal detects an error in a message.
///
/// The error may have occurred in any of the data words within the message, and
/// when a terminal receives this flag in a message, it will ignore all data
/// words in the containing message. If an error is detected within a message
/// and this flag is set, the remote terminal must suppress transmission of the
/// status word. If an illegal command is detected, this flag is set and the
/// status word is transmitted.
///
/// This flag is described on page 32 in the MIL-STD-1553 Tutorial[^1].
///
/// [^1]: [MIL-STD-1553 Tutorial](http://www.horntech.cn/techDocuments/MIL-STD-1553Tutorial.pdf)
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
#[repr(u8)]
pub enum MessageError {
    /// No error
    None = 0,

    /// An error has occurred
    Error = 1,
}

impl MessageError {
    /// Check if the enum is 'None' variant
    #[must_use = "Returned value is not used"]
    pub const fn is_none(&self) -> bool {
        matches!(self, Self::None)
    }

    /// Check if enum is 'Error' variant
    #[must_use = "Returned value is not used"]
    pub const fn is_error(&self) -> bool {
        matches!(self, Self::Error)
    }
}

impl From<u8> for MessageError {
    fn from(value: u8) -> Self {
        match value {
            1 => Self::Error,
            _ => Self::None,
        }
    }
}

impl From<MessageError> for u8 {
    fn from(value: MessageError) -> Self {
        match value {
            MessageError::Error => 1,
            MessageError::None => 0,
        }
    }
}

impl From<u16> for MessageError {
    fn from(value: u16) -> Self {
        Self::from(value as u8)
    }
}

impl From<MessageError> for u16 {
    fn from(value: MessageError) -> Self {
        u8::from(value) as u16
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_parity_0() {
        let value = parity(0b1010101010101010);
        assert_eq!(value, 1);
    }

    #[test]
    fn test_parity_1() {
        let value = parity(0b1010101010101000);
        assert_eq!(value, 0);
    }

    #[test]
    fn test_parity_2() {
        let value = parity(0b1010101010100000);
        assert_eq!(value, 1);
    }

    #[test]
    fn test_parity_3() {
        let value = parity(0b1010101010000000);
        assert_eq!(value, 0);
    }

    #[test]
    fn test_system_error_clone() {
        let error1 = SystemError::Terminal(TerminalError::Error);
        let error2 = error1.clone();
        assert_eq!(error1, error2);
    }

    #[test]
    fn test_terminal_error_clone() {
        let error1 = TerminalError::Error;
        let error2 = error1.clone();
        assert_eq!(error1, error2);
    }

    #[test]
    fn test_terminal_error() {
        let error = TerminalError::None;
        assert!(error.is_none());

        let error = TerminalError::Error;
        assert!(error.is_error());
    }

    #[test]
    fn test_terminal_error_from_u8() {
        let error = TerminalError::from(0u8);
        assert!(error.is_none());

        let error = TerminalError::from(1u8);
        assert!(error.is_error());
    }

    #[test]
    fn test_u8_from_terminal_error() {
        let error = u8::from(TerminalError::None);
        assert_eq!(error, 0);

        let error = u8::from(TerminalError::Error);
        assert_eq!(error, 1);
    }

    #[test]
    fn test_terminal_error_from_u16() {
        let error = TerminalError::from(0u16);
        assert!(error.is_none());

        let error = TerminalError::from(1u16);
        assert!(error.is_error());
    }

    #[test]
    fn test_u16_from_terminal_error() {
        let error = u16::from(TerminalError::None);
        assert_eq!(error, 0);

        let error = u16::from(TerminalError::Error);
        assert_eq!(error, 1);
    }

    #[test]
    fn test_subsystem_error_clone() {
        let error1 = SubsystemError::Error;
        let error2 = error1.clone();
        assert_eq!(error1, error2);
    }

    #[test]
    fn test_subsystem_error() {
        let error = SubsystemError::None;
        assert!(error.is_none());

        let error = SubsystemError::Error;
        assert!(error.is_error());
    }

    #[test]
    fn test_subsystem_error_from_u8() {
        let error = SubsystemError::from(0u8);
        assert!(error.is_none());

        let error = SubsystemError::from(1u8);
        assert!(error.is_error());
    }

    #[test]
    fn test_u8_from_subsystem_error() {
        let error = u8::from(SubsystemError::None);
        assert_eq!(error, 0);

        let error = u8::from(SubsystemError::Error);
        assert_eq!(error, 1);
    }

    #[test]
    fn test_subsystem_error_from_u16() {
        let error = SubsystemError::from(0u16);
        assert!(error.is_none());

        let error = SubsystemError::from(1u16);
        assert!(error.is_error());
    }

    #[test]
    fn test_u16_from_subsystem_error() {
        let error = u16::from(SubsystemError::None);
        assert_eq!(error, 0);

        let error = u16::from(SubsystemError::Error);
        assert_eq!(error, 1);
    }

    #[test]
    fn test_message_error_clone() {
        let error1 = MessageError::Error;
        let error2 = error1.clone();
        assert_eq!(error1, error2);
    }

    #[test]
    fn test_message_error() {
        let error = MessageError::None;
        assert!(error.is_none());

        let error = MessageError::Error;
        assert!(error.is_error());
    }

    #[test]
    fn test_message_error_from_u8() {
        let error = MessageError::from(0u8);
        assert!(error.is_none());

        let error = MessageError::from(1u8);
        assert!(error.is_error());
    }

    #[test]
    fn test_u8_from_message_error() {
        let error = u8::from(MessageError::None);
        assert_eq!(error, 0);

        let error = u8::from(MessageError::Error);
        assert_eq!(error, 1);
    }

    #[test]
    fn test_message_error_from_u16() {
        let error = MessageError::from(0u16);
        assert!(error.is_none());

        let error = MessageError::from(1u16);
        assert!(error.is_error());
    }

    #[test]
    fn test_u16_from_message_error() {
        let error = u16::from(MessageError::None);
        assert_eq!(error, 0);

        let error = u16::from(MessageError::Error);
        assert_eq!(error, 1);
    }
}