micropython/ports/esp8266/boards/ESP8266_GENERIC/manifest_2MiB.py
Damien George c2e9a6f2a5 esp8266/boards/ESP8266_GENERIC: Remove urllib from the 2MiB manifest.
No other network-enabled board has urllib.urequest frozen in to the
firmware, and esp8266 is relatively low on flash, so remove this module.

And (u)requests is already included by bundle-networking.

Signed-off-by: Damien George <damien@micropython.org>
2023-10-05 20:55:52 +11:00

16 lines
261 B
Python

# base modules
include("$(PORT_DIR)/boards/manifest.py")
# asyncio
include("$(MPY_DIR)/extmod/asyncio")
# drivers
require("ssd1306")
# micropython-lib: file utilities
require("upysh")
# micropython-lib: umqtt
require("umqtt.simple")
require("umqtt.robust")