https://github.com/mupq/pqm4
Raw File
Tip revision: c4fd63c4349a0e8d06b51f11c5a7ec09ff77bf39 authored by Matthias J. Kannwischer on 23 February 2024, 07:51:58 UTC
fix build on stm32f4discovery
Tip revision: c4fd63c
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import parse_arguments, get_platform
from mupq import mupq


if __name__ == "__main__":
    args, rest = parse_arguments()
    platform, settings = get_platform(args)
    with platform:
        mupq.BuildAll(settings).test_all(rest)
back to top