Skip to content
Snippets Groups Projects
Select Git revision
  • ce166e6b68b7fafb73a99fd64081f8a4155fe22a
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

pyb.ADC.rst

Blame
  • bootstrap.sh 740 B
    #!/bin/sh
    set -xe
    
    cd "$(dirname "$0")"
    test -d build/ && rm -r build/
    
    git submodule update --init ./lib/micropython
    meson --cross-file card10-cross.ini build/
    
    set +x
    
    echo "---------------------------------------------------------------"
    echo "   Build configured successfully!"
    echo "---------------------------------------------------------------"
    echo "   You can now start building using"
    echo "       ninja -C build/"
    echo ""
    echo "   The path after -C is the path to the build-directory."
    echo "   Suppose you are in 'hw-tests/hello-world/', you could"
    echo "   then run 'ninja -C ../../build/'"
    echo ""
    echo "   You can also build a single target.  For example:"
    echo "       ninja -C build/ hw-tests/hello-world/hello-world.elf"