cc_talk_host 0.0.2

ccTalk host crate based on cc_talk_core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(dead_code)]

pub mod payout;

/// Represents the possible errors when talking to a ccTalk device.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum DeviceError {
    Timeout,
    ChecksumMismatch,
    BufferOverflow,
    Nack,
    MalformedResponse,
}