#串口 #枚举 #跟随

serial_enumerate

一个用于枚举串口的 Rust crate

1 个不稳定版本

使用旧的 Rust 2015

0.1.0 2016年11月28日

#11 in #枚举

31 每月下载量

MIT 许可证

3KB

串行枚举

serial-enumerate 提供了一种在 Windows 和 Unix 操作系统上枚举串口的方法。

使用方法

将以下内容添加到您的 Cargo.toml 文件中。

serial-enumerate = {git = "https://github.com/Geemili/serial-enumerate.git"}

示例

for device in serial_enumerate::enumerate_serial_ports().unwrap() {
   println!("{}", device);
}

lib.rs:

该 crate 提供了一种枚举串口的简单方法。

for device in serial_enumerate::enumerate_serial_ports().unwrap() {
    println!("{}", device);
}

依赖关系

~485KB