You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
488 B
24 lines
488 B
# The asyncio package is built from the standard implementation but with the
|
|
# core scheduler replaced with a custom scheduler that uses the JavaScript
|
|
# runtime (with setTimeout an Promise's) to contrtol the scheduling.
|
|
|
|
package(
|
|
"asyncio",
|
|
(
|
|
"event.py",
|
|
"funcs.py",
|
|
"lock.py",
|
|
),
|
|
base_path="$(MPY_DIR)/extmod",
|
|
opt=3,
|
|
)
|
|
|
|
package(
|
|
"asyncio",
|
|
(
|
|
"__init__.py",
|
|
"core.py",
|
|
),
|
|
base_path="$(PORT_DIR)",
|
|
opt=3,
|
|
)
|
|
|