Skip to content
Snippets Groups Projects
Select Git revision
  • 9cab153acd3754f40a958a3c55fb4b46fa6dba6e
  • master default protected
  • ecg-ledupdate
  • ecg-app-pause
  • ecg-app
  • remove-debug-bhi160
  • docs-power
  • clock-colors
  • ble-text-color
  • menu-timeout
  • update-menu
  • rahix/batt
  • genofire/ble-rewrite
  • renze/safe_mode
  • renze/hatchery_apps
  • schneider/fundamental-test
  • koalo/factory-reset
  • ios-workarounds
  • msgctl/gfx_rle
  • msgctl/faultscreen
  • msgctl/textbuffer_api
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
26 results

DEV_Config.c

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    bootstrap.sh 745 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"