https://github.com/mupq/pqm4
Revision fdd41fa629f9076bf133d8e06c3537c0367327f9 authored by Daan Sprenkels on 07 October 2019, 08:34:53 UTC, committed by Ko- on 07 October 2019, 12:07:29 UTC
The missing fields are initialized with default values following
the conventions of the predefined profiles from
<libopencm3.org/docs/latest/stm32f4/html/rcc_8c_source.html>.

I did not test this patch on the M4 hardware.
1 parent 667d80b
Raw File
Tip revision: fdd41fa629f9076bf133d8e06c3537c0367327f9 authored by Daan Sprenkels on 07 October 2019, 08:34:53 UTC
Add missing fields in benchmarkclock struct
Tip revision: fdd41fa
testvectors.py
#!/usr/bin/env python3
from mupq import mupq
from interface import M4Settings, M4

import sys
if __name__ == "__main__":
    with M4() as m4:
        test = mupq.TestVectors(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top