ghpascon-rust 1.0.5

A personal Rust utility library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod ble_protocol;
mod commands;
mod config;
pub mod config_example;
mod parser;
mod serial_protocol;
mod tcp_protocol;
mod transport;
mod types;
mod x714;

pub use config::{
    AntennaConfig, BleConfig, ConnectionType, ParamMap, SerialConfig, TcpConfig, X714Config,
};
pub use parser::parse_tag_frame;
pub use transport::{EventHandler, SharedEventHandler};
pub use types::{X714Event, X714Tag};
pub use x714::X714;