tauri-plugin-serialplugin 3.0.0

Tauri plugin for serial port access (desktop and Android).
1
2
3
4
5
6
7
8
9
10
11
//! RX hub layer (shared state + poll loop on all platforms).

pub mod desktop;
pub mod handle;
pub mod shared;

pub use desktop::PortRxHub;
pub use handle::RxHubHandle;
pub use shared::{
    emit_urc, ExchangeWaiter, HubRoutingState, LineRouter, RxHubShared, RxRouteAction,
};