Skip to content
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

Pico Plus 2: LTE and WiFi Support #10

Closed
wants to merge 19 commits into from

Conversation

Gadgetoid
Copy link
Member

@Gadgetoid Gadgetoid commented Sep 25, 2024

Note: This build is based upon the develop branch of Pico SDK and a customised fork of MicroPython based upon unmerged support for RP2350. It is, as such, multiple layers of experimental.

Expect regular bugfix releases and improvements.

I am adding the latest test builds to: https://github.com/pimoroni/pimoroni-pico-rp2350/releases/tag/v0.0.7

Replaces #5

Very basic test script for the built-in LTE Python module:

import gc
import lte
import time
import requests
con = lte.LTE(YOUR_CARRIER_APN_GOES_HERE)
con.start_ppp()

try:
    t_start = time.time()
    for x in range(2):
        gc.collect()
        print(gc.mem_free())
        irq_count = 0
        req= requests.get("https://shop.pimoroni.com/robots.txt")
        print(req)

finally:
    t_end = time.time()

    print(f"Took: {t_end - t_start} seconds")

    print("Disconnecting...")
    con.stop_ppp()
    print("Done!")

@Gadgetoid Gadgetoid force-pushed the feature/can-haz-all-the-wireless-plz branch 3 times, most recently from f52c2c3 to 075e3c1 Compare September 26, 2024 16:37
@Gadgetoid Gadgetoid force-pushed the feature/can-haz-all-the-wireless-plz branch from 075e3c1 to 7b2f6e9 Compare September 26, 2024 16:48
@Gadgetoid Gadgetoid force-pushed the feature/can-haz-all-the-wireless-plz branch 3 times, most recently from 82074f4 to 4ad2b20 Compare September 27, 2024 14:04
@Gadgetoid
Copy link
Member Author

Note that Pico 2 support has been merged into mainline MicroPython (along with PPP) but we're still outstanding updates to WiFi support and our PSRAM pull-request before we'll have a feature-complete mainline build.

@Gadgetoid Gadgetoid closed this Nov 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants