blob: 17c5a770c4967af083a5479cfece9d5c064653c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
|