mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 20:50:14 +01:00
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:
committed by
Damien George
parent
c9baf498c8
commit
6250337c9c
3
ports/mimxrt/boards/MIMXRT1020_EVK/manifest.py
Normal file
3
ports/mimxrt/boards/MIMXRT1020_EVK/manifest.py
Normal file
@@ -0,0 +1,3 @@
|
||||
include("../manifest.py")
|
||||
|
||||
require("bundle-networking")
|
||||
@@ -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
|
||||
|
||||
|
||||
3
ports/mimxrt/boards/MIMXRT1050_EVK/manifest.py
Normal file
3
ports/mimxrt/boards/MIMXRT1050_EVK/manifest.py
Normal file
@@ -0,0 +1,3 @@
|
||||
include("../manifest.py")
|
||||
|
||||
require("bundle-networking")
|
||||
@@ -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
|
||||
|
||||
3
ports/mimxrt/boards/MIMXRT1060_EVK/manifest.py
Normal file
3
ports/mimxrt/boards/MIMXRT1060_EVK/manifest.py
Normal file
@@ -0,0 +1,3 @@
|
||||
include("../manifest.py")
|
||||
|
||||
require("bundle-networking")
|
||||
@@ -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
|
||||
|
||||
|
||||
3
ports/mimxrt/boards/MIMXRT1064_EVK/manifest.py
Normal file
3
ports/mimxrt/boards/MIMXRT1064_EVK/manifest.py
Normal file
@@ -0,0 +1,3 @@
|
||||
include("../manifest.py")
|
||||
|
||||
require("bundle-networking")
|
||||
@@ -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
|
||||
|
||||
3
ports/mimxrt/boards/MIMXRT1170_EVK/manifest.py
Normal file
3
ports/mimxrt/boards/MIMXRT1170_EVK/manifest.py
Normal file
@@ -0,0 +1,3 @@
|
||||
include("../manifest.py")
|
||||
|
||||
require("bundle-networking")
|
||||
@@ -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 \
|
||||
|
||||
3
ports/mimxrt/boards/SEEED_ARCH_MIX/manifest.py
Normal file
3
ports/mimxrt/boards/SEEED_ARCH_MIX/manifest.py
Normal file
@@ -0,0 +1,3 @@
|
||||
include("../manifest.py")
|
||||
|
||||
require("bundle-networking")
|
||||
@@ -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
|
||||
|
||||
3
ports/mimxrt/boards/TEENSY41/manifest.py
Normal file
3
ports/mimxrt/boards/TEENSY41/manifest.py
Normal file
@@ -0,0 +1,3 @@
|
||||
include("../manifest.py")
|
||||
|
||||
require("bundle-networking")
|
||||
@@ -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 $<
|
||||
|
||||
Reference in New Issue
Block a user