From 6a077806c6fd82da0a35486cae0c2706763c67e6 Mon Sep 17 00:00:00 2001 From: Glenn Ruben Bakke Date: Wed, 4 Jan 2017 20:11:41 +0100 Subject: [PATCH] nrf5: Enable MICROPY_FINALISER and REPL_AUTO_INDENT. --- nrf5/mpconfigport.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nrf5/mpconfigport.h b/nrf5/mpconfigport.h index ec34c79525..daa5a64aee 100644 --- a/nrf5/mpconfigport.h +++ b/nrf5/mpconfigport.h @@ -39,11 +39,11 @@ #define MICROPY_COMP_MODULE_CONST (0) #define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (0) #define MICROPY_ENABLE_GC (1) -#define MICROPY_ENABLE_FINALISER (0) +#define MICROPY_ENABLE_FINALISER (1) #define MICROPY_STACK_CHECK (0) #define MICROPY_HELPER_REPL (1) #define MICROPY_REPL_EMACS_KEYS (0) -#define MICROPY_REPL_AUTO_INDENT (0) +#define MICROPY_REPL_AUTO_INDENT (1) #define MICROPY_ENABLE_SOURCE_LINE (0) #define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ) #define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_NONE)