From b60ed0bd7b6bcb309a965abba81da21ea158f5e8 Mon Sep 17 00:00:00 2001 From: Rahix <rahix@rahix.de> Date: Sat, 25 Dec 2021 18:47:37 +0100 Subject: [PATCH] feat(pycardium): Enable f-strings Nobody noticed by MicroPython 1.17 brings f-strings. Let's enable them! --- pycardium/mpconfigport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/pycardium/mpconfigport.h b/pycardium/mpconfigport.h index d4ff0a0c..a7d0f7bd 100644 --- a/pycardium/mpconfigport.h +++ b/pycardium/mpconfigport.h @@ -53,6 +53,7 @@ int mp_hal_csprng_read_int(void); #define MICROPY_PY_IO_FILEIO (1) #define MICROPY_PY_UERRNO (1) #define MICROPY_PY_FRAMEBUF (1) +#define MICROPY_PY_FSTRINGS (1) #define MICROPY_PY_BLUETOOTH (1) #define MICROPY_PY_BUILTINS_MEMORYVIEW (1) #define MICROPY_PY_BLUETOOTH_ENABLE_CENTRAL_MODE (1) -- GitLab