-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moves Unix implemention to serial-unix crate
- Loading branch information
1 parent
7da8fd2
commit c2cfb4f
Showing
10 changed files
with
712 additions
and
755 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[package] | ||
name = "serial-unix" | ||
version = "0.4.0" | ||
authors = ["David Cuddeback <[email protected]>"] | ||
|
||
[dependencies] | ||
serial-core = { path = "../serial-core" } | ||
libc = "0.2.1" | ||
termios = "0.2.2" | ||
ioctl-rs = "0.1.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
//! Serial port implementation for Unix operating systems. | ||
extern crate serial_core as core; | ||
extern crate libc; | ||
extern crate termios; | ||
extern crate ioctl_rs as ioctl; | ||
|
||
pub use tty::*; | ||
|
||
mod error; | ||
mod poll; | ||
mod tty; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.