8000 _webrepl: Remove the _webrepl module. by felixdoerre · Pull Request #13786 · micropython/micropython · GitHub
[go: up one dir, main page]

Skip to content

_webrepl: Remove the _webrepl module. #13786

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view < 8000 /h5>
1 change: 0 additions & 1 deletion extmod/extmod.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ set(MICROPY_SOURCE_EXTMOD
${MICROPY_EXTMOD_DIR}/modtime.c
${MICROPY_EXTMOD_DIR}/modvfs.c
${MICROPY_EXTMOD_DIR}/modwebsocket.c
${MICROPY_EXTMOD_DIR}/modwebrepl.c
${MICROPY_EXTMOD_DIR}/network_cyw43.c
${MICROPY_EXTMOD_DIR}/network_lwip.c
${MICROPY_EXTMOD_DIR}/network_ninaw10.c
Expand Down
1 change: 0 additions & 1 deletion extmod/extmod.mk
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ SRC_EXTMOD_C += \
extmod/modtime.c \
extmod/moductypes.c \
extmod/modvfs.c \
extmod/modwebrepl.c \
extmod/modwebsocket.c \
extmod/network_cyw43.c \
extmod/network_esp_hosted.c \
Expand Down
369 changes: 0 additions & 369 deletions extmod/modwebrepl.c

This file was deleted.

3 changes: 1 addition & 2 deletions ports/esp32/mpconfigport.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,8 @@
#define MICROPY_PY_SSL (1)
#define MICROPY_SSL_MBEDTLS (1)
#define MICROPY_PY_WEBSOCKET (1)
#define MICROPY_PY_WEBREPL (1)
#define MICROPY_PY_ONEWIRE (1)
#define MICROPY_PY_SOCKET_EVENTS (MICROPY_PY_WEBREPL)
#define MICROPY_PY_SOCKET_EVENTS (1)
#define MICROPY_PY_BLUETOOTH_RANDOM_ADDR (1)

// fatfs configuration
Expand Down
Loading
0