ports: Make all network-capable boards use bundle-networking.

This will ensure that any board with networking support gets:
 - webrepl
 - mip
 - urequests
 - ntptime

This work was funded through GitHub Sponsors.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
This commit is contained in:
Jim Mussared
2023-01-27 14:17:19 +11:00
committed by Damien George
parent c9baf498c8
commit 6250337c9c
44 changed files with 92 additions and 20 deletions

View File

@@ -0,0 +1,3 @@
include("../manifest.py")
require("bundle-networking")

View File

@@ -13,6 +13,8 @@ MICROPY_PY_LWIP = 1
MICROPY_PY_USSL = 1
MICROPY_SSL_MBEDTLS = 1
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
JLINK_PATH ?= /media/RT1020-EVK/
JLINK_COMMANDER_SCRIPT = $(BUILD)/script.jlink

View File

@@ -0,0 +1,3 @@
include("../manifest.py")
require("bundle-networking")

View File

@@ -12,3 +12,5 @@ MICROPY_HW_SDRAM_SIZE = 0x2000000 # 32MB
MICROPY_PY_LWIP = 1
MICROPY_PY_USSL = 1
MICROPY_SSL_MBEDTLS = 1
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py

View File

@@ -0,0 +1,3 @@
include("../manifest.py")
require("bundle-networking")

View File

@@ -13,6 +13,8 @@ MICROPY_PY_LWIP = 1
MICROPY_PY_USSL = 1
MICROPY_SSL_MBEDTLS = 1
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
JLINK_PATH ?= /media/RT1060-EVK/
JLINK_COMMANDER_SCRIPT = $(BUILD)/script.jlink

View File

@@ -0,0 +1,3 @@
include("../manifest.py")
require("bundle-networking")

View File

@@ -13,6 +13,8 @@ MICROPY_PY_LWIP = 1
MICROPY_PY_USSL = 1
MICROPY_SSL_MBEDTLS = 1
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
JLINK_PATH ?= /media/RT1064-EVK/
deploy: $(BUILD)/firmware.bin

View File

@@ -0,0 +1,3 @@
include("../manifest.py")
require("bundle-networking")

View File

@@ -15,6 +15,8 @@ MICROPY_PY_LWIP = 1
MICROPY_PY_USSL = 1
MICROPY_SSL_MBEDTLS = 1
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
CFLAGS += -DCPU_MIMXRT1176DVMAA_cm7 \
-DMIMXRT117x_SERIES \
-DENET_ENHANCEDBUFFERDESCRIPTOR_MODE=1 \

View File

@@ -0,0 +1,3 @@
include("../manifest.py")
require("bundle-networking")

View File

@@ -13,4 +13,6 @@ MICROPY_PY_LWIP = 1
MICROPY_PY_USSL = 1
MICROPY_SSL_MBEDTLS = 1
CFLAGS += -DSPI_RETRY_TIMES=1000000
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
CFLAGS += -DSPI_RETRY_TIMES=1000000

View File

@@ -0,0 +1,3 @@
include("../manifest.py")
require("bundle-networking")

View File

@@ -11,5 +11,7 @@ MICROPY_PY_LWIP = 1
MICROPY_PY_USSL = 1
MICROPY_SSL_MBEDTLS = 1
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
deploy: $(BUILD)/firmware.hex
teensy_loader_cli --mcu=imxrt1062 -v -w $<