You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
b372bfca21
mpconfig.h will automatically pull mpconfigport.h.
14 lines
401 B
C
14 lines
401 B
C
// 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
|