unix: Enable uasyncio on dev variant.

This commit is contained in:
Jim Mussared 2020-06-09 16:45:30 +10:00 committed by Damien George
parent 27abac95d8
commit 4050281311
3 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,3 @@
include("$(PORT_DIR)/variants/manifest.py")
include("$(MPY_DIR)/extmod/uasyncio/manifest.py")

View File

@ -30,3 +30,7 @@
#define MICROPY_PY_SYS_SETTRACE (1)
#define MICROPY_PY_URANDOM_EXTRA_FUNCS (1)
#ifndef MICROPY_PY_UASYNCIO
#define MICROPY_PY_UASYNCIO (1)
#endif

View File

@ -1,5 +1,7 @@
PROG ?= micropython-dev
FROZEN_MANIFEST ?= $(VARIANT_DIR)/manifest.py
MICROPY_ROM_TEXT_COMPRESSION = 1
MICROPY_PY_BLUETOOTH = 1