diff options
Diffstat (limited to 'py/defaultconfig.h')
-rw-r--r-- | py/defaultconfig.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/py/defaultconfig.h b/py/defaultconfig.h new file mode 100644 index 0000000000..9829bf707d --- /dev/null +++ b/py/defaultconfig.h @@ -0,0 +1,7 @@ +// This file contains default configuration settings for MicroPython. +// You can override any of these options in mpconfig.h for your port. + +// Whether to collect memory allocation stats +#ifndef MICROPY_MEM_STATS +#define MICROPY_MEM_STATS (1) +#endif |