Skip to content
Snippets Groups Projects
Select Git revision
  • 6a014fbc8e0cb91588a957134cce6d7f34096b38
  • master default protected
2 results

rtt-pwm-dma.rs

Blame
  • Forked from Per Lindgren / e7020e_2021
    Source project has a limited visibility.
    install.sh 332 B
    set -euxo pipefail
    
    main() {
        case $TARGET in
            thumbv*-none-eabi*)
                cargo install --list | grep 'xargo v0.3.8' || \
                    cargo install xargo --vers 0.3.8
                rustup component list | grep 'rust-src.*installed' || \
                    rustup component add rust-src
                ;;
        esac
    }
    
    main