We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83a92f9 commit cdc1429Copy full SHA for cdc1429
code/ulab.h
@@ -12,6 +12,8 @@
12
#ifndef __ULAB__
13
#define __ULAB__
14
15
+
16
17
// The pre-processor constants in this file determine how ulab behaves:
18
//
19
// - how many dimensions ulab can handle
@@ -23,6 +25,13 @@
23
25
// A considerable amount of flash space can be saved by removing (setting
24
26
// the corresponding constants to 0) the unnecessary functions and features.
27
28
+// Values defined here can be overridden by your own config file as
29
+// make -DULAB_CONFIG_FILE="my_ulab_config.h"
30
+#if defined(ULAB_CONFIG_FILE)
31
+#include ULAB_CONFIG_FILE
32
+#endif
33
34
35
// Determines, whether scipy is defined in ulab. The sub-modules and functions
36
// of scipy have to be defined separately
37
#ifndef ULAB_HAS_SCIPY
0 commit comments