commit | 53f828fa39079e0c4a884c08abc93851b318afa3 | [log] [tgz] |
---|---|---|
author | Christophe Favergeon <Christophe.Favergeon@arm.com> | Mon Mar 25 13:42:44 2019 +0100 |
committer | Christophe Favergeon <Christophe.Favergeon@arm.com> | Mon Mar 25 14:03:32 2019 +0100 |
tree | d521554827cef77d110adb7b9623381daee280a4 | |
parent | 1c41dcac1edee24f0da184a7ab57971a31c6e052 [diff] [blame] |
First release of the Numpy compatible Python wrapper for the CMSIS-DSP.
diff --git a/CMSIS/DSP/PythonWrapper/config.py b/CMSIS/DSP/PythonWrapper/config.py new file mode 100644 index 0000000..0e75a71 --- /dev/null +++ b/CMSIS/DSP/PythonWrapper/config.py
@@ -0,0 +1,12 @@ +CMSISDSP = 1 + +ROOT=".." + +config = CMSISDSP + +if config == CMSISDSP: + extensionName = 'cmsisdsp' + setupName = 'CMSISDSP' + setupDescription = 'CMSIS-DSP Python API' + cflags="-DCMSISDSP" +