linux-embedded-hal 0.3.0

Implementation of the `embedded-hal` traits for Linux devices
Documentation
1
2
3
4
5
6
7
8
9
set -euxo pipefail

main() {
    if [ $TARGET != x86_64-unknown-linux-gnu ]; then
        rustup target add $TARGET
    fi
}

main