py/mpconfig.h: Revert MICROPY_REPL_INFO to disabled at all levels.
This is an stm32-specific feature that's accessed via the pyb module, so not something that will be widely enabled. Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
b1a0ce46d1
commit
c62351fbd6
|
@ -68,7 +68,6 @@
|
||||||
#define MICROPY_PY_BUILTINS_EXECFILE (0)
|
#define MICROPY_PY_BUILTINS_EXECFILE (0)
|
||||||
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (0)
|
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (0)
|
||||||
#define MICROPY_REPL_EMACS_KEYS (0)
|
#define MICROPY_REPL_EMACS_KEYS (0)
|
||||||
#define MICROPY_REPL_INFO (0)
|
|
||||||
|
|
||||||
// Python internal features
|
// Python internal features
|
||||||
#define MICROPY_READER_VFS (1)
|
#define MICROPY_READER_VFS (1)
|
||||||
|
|
|
@ -69,6 +69,7 @@
|
||||||
#define MICROPY_ENABLE_GC (1)
|
#define MICROPY_ENABLE_GC (1)
|
||||||
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)
|
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)
|
||||||
#define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (0)
|
#define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (0)
|
||||||
|
#define MICROPY_REPL_INFO (1)
|
||||||
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
||||||
#ifndef MICROPY_FLOAT_IMPL // can be configured by each board via mpconfigboard.mk
|
#ifndef MICROPY_FLOAT_IMPL // can be configured by each board via mpconfigboard.mk
|
||||||
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
|
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT)
|
||||||
|
|
|
@ -652,7 +652,7 @@
|
||||||
|
|
||||||
// Allow enabling debug prints after each REPL line
|
// Allow enabling debug prints after each REPL line
|
||||||
#ifndef MICROPY_REPL_INFO
|
#ifndef MICROPY_REPL_INFO
|
||||||
#define MICROPY_REPL_INFO (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
|
#define MICROPY_REPL_INFO (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Whether to include emacs-style readline behavior in REPL
|
// Whether to include emacs-style readline behavior in REPL
|
||||||
|
|
Loading…
Reference in New Issue