avr-tester 0.6.4

Framework for testing AVR binaries
Documentation
//! This example shows how you can test UARTs.
//!
//! We're given an AVR that implements a ROT13 encoder and we basically assert
//! that the encoder works.
//!
//! See: [../../../avr-tester-fixtures/src/uart.rs].

use avr_tester::AvrTester;

#[test]
fn test() {
    let mut avr = AvrTester::atmega328()
        .with_clock_of_16_mhz()
        .load("../avr-tester-fixtures/target/avr-none/release/uart.elf");

    avr.run_for_ms(1);

    assert_eq!("Ready!", avr.uart0().read::<String>());

    let mut assert = |given: &str, expected: &str| {
        avr.uart0().write(given);
        avr.run_for_ms(50);

        assert_eq!(expected, avr.uart0().read::<String>());
    };

    assert("Hello, World!", "Uryyb, Jbeyq!");

    assert(
        "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent \
          non maximus purus. Fusce a neque condimentum, finibus dui et, tempor",
        "Yberz vcfhz qbybe fvg nzrg, pbafrpgrghe nqvcvfpvat ryvg. Cenrfrag \
          aba znkvzhf chehf. Shfpr n ardhr pbaqvzraghz, svavohf qhv rg, grzcbe",
    );
}