04f92a2825
If the board directory contains a manifest.py file, it will be included. File not found errors will be ignored.
9 lines
240 B
Python
9 lines
240 B
Python
freeze("$(PORT_DIR)/modules")
|
|
freeze("$(MPY_DIR)/drivers/onewire")
|
|
freeze("$(MPY_DIR)/drivers/dht", "dht.py")
|
|
include("$(MPY_DIR)/extmod/uasyncio/manifest.py")
|
|
try:
|
|
include("$(BOARD_DIR)/manifest.py")
|
|
except FileNotFoundError:
|
|
pass
|