diff options
| author | Damien George | 2020-03-21 22:26:02 +1100 |
|---|---|---|
| committer | Damien George | 2020-03-26 01:25:45 +1100 |
| commit | 35e2dd0979f80df8cb5fbb22a9766ee13d4ef437 (patch) | |
| tree | e0cc20de0d806e010e97cc02fa9614a89b39ada5 | |
| parent | 3b68f3617565f8f4d05ac23d7be7f094e628bcbf (diff) | |
stm32: Enable and freeze uasyncio.
| -rw-r--r-- | ports/stm32/boards/manifest.py | 1 | ||||
| -rw-r--r-- | ports/stm32/mpconfigport.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ports/stm32/boards/manifest.py b/ports/stm32/boards/manifest.py index 339077323..81b858341 100644 --- a/ports/stm32/boards/manifest.py +++ b/ports/stm32/boards/manifest.py @@ -1,3 +1,4 @@ +include("$(MPY_DIR)/extmod/uasyncio/manifest.py") freeze("$(MPY_DIR)/drivers/dht", "dht.py") freeze("$(MPY_DIR)/drivers/display", ("lcd160cr.py", "lcd160cr_test.py")) freeze("$(MPY_DIR)/drivers/onewire", "onewire.py") diff --git a/ports/stm32/mpconfigport.h b/ports/stm32/mpconfigport.h index 95442b647..a7baa3495 100644 --- a/ports/stm32/mpconfigport.h +++ b/ports/stm32/mpconfigport.h @@ -134,6 +134,7 @@ #endif // extended modules +#define MICROPY_PY_UASYNCIO (1) #define MICROPY_PY_UCTYPES (1) #define MICROPY_PY_UZLIB (1) #define MICROPY_PY_UJSON (1) |
