diff options
author | Kevin Köck <kevin.koeck@gmx.net> | 2021-03-13 09:17:02 +0100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-03-13 23:34:50 +1100 |
commit | af45d511f190454159fe39ba50c477d7bbd6bb5e (patch) | |
tree | c2c1514857a94feef359543d140d86d568f4c4fa | |
parent | e98ff3f08e966595fd84d83296f84962ee3d8d94 (diff) | |
download | micropython-af45d511f190454159fe39ba50c477d7bbd6bb5e.tar.gz micropython-af45d511f190454159fe39ba50c477d7bbd6bb5e.zip |
rp2: Enable uerrno module.
Fixes #6991.
-rw-r--r-- | ports/rp2/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/rp2/mpconfigport.h b/ports/rp2/mpconfigport.h index 91d0c29b3a..35d1645522 100644 --- a/ports/rp2/mpconfigport.h +++ b/ports/rp2/mpconfigport.h @@ -88,6 +88,7 @@ #define MICROPY_PY_SYS_STDFILES (1) #define MICROPY_PY_SYS_STDIO_BUFFER (1) #define MICROPY_PY_SYS_PLATFORM "rp2" +#define MICROPY_PY_UERRNO (1) #define MICROPY_PY_THREAD (1) #define MICROPY_PY_THREAD_GIL (0) |