1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys
from interface import M4Settings
from mupq import mupq
if __name__ == "__main__":
mupq.BuildAll(M4Settings()).test_all(sys.argv[1:])
|