Skip to content

Platform agnostic bit banging serial communication implementation built using the embedded-hal

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE.txt
MIT
LICENSE-MIT.txt
Notifications You must be signed in to change notification settings

JoshMcguigan/bit-bang-serial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bit-bang-serial

Bit banging implementation of serial communication using embedded-hal OutputPin

Limitations

Example

An example for the BETAFPV-F3 is listed below. Be sure to compile in release mode.

    let Board {motor_1: mut out, mut delay, ..} = Board::new();

    let baud = 9600u32;
    let time_adjustment = -6i32;
    let mut tx = bit_bang_serial::Tx::new(out, baud, time_adjustment);

    loop {
        tx.write(&mut delay, "Testing..".as_bytes());
        delay.delay_ms(5u32);
    }

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Platform agnostic bit banging serial communication implementation built using the embedded-hal

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE.txt
MIT
LICENSE-MIT.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages