Skip to content
Snippets Groups Projects
Commit 8f86fbfd authored by Damien George's avatar Damien George
Browse files

ports: Enable ure.sub() on stm32, esp8266 (not 512k) and esp32.

parent 41226e9a
Branches
No related tags found
No related merge requests found
...@@ -122,6 +122,7 @@ ...@@ -122,6 +122,7 @@
#define MICROPY_PY_UZLIB (1) #define MICROPY_PY_UZLIB (1)
#define MICROPY_PY_UJSON (1) #define MICROPY_PY_UJSON (1)
#define MICROPY_PY_URE (1) #define MICROPY_PY_URE (1)
#define MICROPY_PY_URE_SUB (1)
#define MICROPY_PY_UHEAPQ (1) #define MICROPY_PY_UHEAPQ (1)
#define MICROPY_PY_UTIMEQ (1) #define MICROPY_PY_UTIMEQ (1)
#define MICROPY_PY_UHASHLIB (1) #define MICROPY_PY_UHASHLIB (1)
......
...@@ -75,6 +75,7 @@ ...@@ -75,6 +75,7 @@
#define MICROPY_PY_UJSON (1) #define MICROPY_PY_UJSON (1)
#define MICROPY_PY_URANDOM (1) #define MICROPY_PY_URANDOM (1)
#define MICROPY_PY_URE (1) #define MICROPY_PY_URE (1)
#define MICROPY_PY_URE_SUB (1)
#define MICROPY_PY_USELECT (1) #define MICROPY_PY_USELECT (1)
#define MICROPY_PY_UTIME_MP_HAL (1) #define MICROPY_PY_UTIME_MP_HAL (1)
#define MICROPY_PY_UZLIB (1) #define MICROPY_PY_UZLIB (1)
......
...@@ -32,6 +32,9 @@ ...@@ -32,6 +32,9 @@
#undef MICROPY_PY_FRAMEBUF #undef MICROPY_PY_FRAMEBUF
#define MICROPY_PY_FRAMEBUF (0) #define MICROPY_PY_FRAMEBUF (0)
#undef MICROPY_PY_URE_SUB
#define MICROPY_PY_URE_SUB (0)
#undef MICROPY_PY_UCRYPTOLIB #undef MICROPY_PY_UCRYPTOLIB
#define MICROPY_PY_UCRYPTOLIB (0) #define MICROPY_PY_UCRYPTOLIB (0)
......
...@@ -127,6 +127,7 @@ ...@@ -127,6 +127,7 @@
#define MICROPY_PY_UZLIB (1) #define MICROPY_PY_UZLIB (1)
#define MICROPY_PY_UJSON (1) #define MICROPY_PY_UJSON (1)
#define MICROPY_PY_URE (1) #define MICROPY_PY_URE (1)
#define MICROPY_PY_URE_SUB (1)
#define MICROPY_PY_UHEAPQ (1) #define MICROPY_PY_UHEAPQ (1)
#define MICROPY_PY_UHASHLIB (1) #define MICROPY_PY_UHASHLIB (1)
#define MICROPY_PY_UBINASCII (1) #define MICROPY_PY_UBINASCII (1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment