diff options
| author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-03 17:15:53 +0200 |
|---|---|---|
| committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-03 19:03:11 +0200 |
| commit | b372bfca21ccab593359ef25a0a0c6bf697c8586 (patch) | |
| tree | a6802e0442c4ac83aa91beb04bac9f222641202b /py/mpconfig.h | |
| parent | ef18102b9ec9634653fd4a8286990e9e21ce2ae0 (diff) | |
Rename default config file to mpconfig.h, and port's to mpconfigport.h.
mpconfig.h will automatically pull mpconfigport.h.
Diffstat (limited to 'py/mpconfig.h')
| -rw-r--r-- | py/mpconfig.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h new file mode 100644 index 000000000..17c5a770c --- /dev/null +++ b/py/mpconfig.h @@ -0,0 +1,13 @@ +// This file contains default configuration settings for MicroPython. +// You can override any of these options using mpconfigport.h file located +// in a directory of your port. + +#include <mpconfigport.h> + +// Any options not explicitly set in mpconfigport.h will get default +// values below. + +// Whether to collect memory allocation stats +#ifndef MICROPY_MEM_STATS +#define MICROPY_MEM_STATS (1) +#endif |
