Skip to content

Commit

Permalink
Add LTE support and module.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Dec 3, 2024
1 parent 2f1c7f2 commit b62cfeb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions boards/manifest-common.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@

freeze("../../pimoroni-pico/micropython/modules_py", "pimoroni.py")
freeze("../../pimoroni-pico/micropython/modules_py", "boot.py")
freeze("../../pimoroni-pico/micropython/modules_py", "lte.py")
freeze("../modules", "inky_frame.py")
3 changes: 2 additions & 1 deletion boards/pico2_w_inky/mpconfigboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
#define MICROPY_HW_FLASH_STORAGE_BYTES (PICO_FLASH_SIZE_BYTES - (2 * 1024 * 1024))

// Enable networking.
#define MICROPY_PY_NETWORK 1
#define MICROPY_PY_NETWORK (1)
#define MICROPY_PY_NETWORK_PPP_LWIP (1)
#define MICROPY_PY_NETWORK_HOSTNAME_DEFAULT "Inky2W"

#include "enable_cyw43.h"
Expand Down
3 changes: 2 additions & 1 deletion boards/pico_w_inky/mpconfigboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
#define MICROPY_HW_FLASH_STORAGE_BYTES (PICO_FLASH_SIZE_BYTES - (1200 * 1024))

// Enable networking.
#define MICROPY_PY_NETWORK 1
#define MICROPY_PY_NETWORK (1)
#define MICROPY_PY_NETWORK_PPP_LWIP (1)
#define MICROPY_PY_NETWORK_HOSTNAME_DEFAULT "InkyW"

// CYW43 driver configuration.
Expand Down

0 comments on commit b62cfeb

Please sign in to comment.