Posted my mp-sync tool for making easier to developing MicroPython rapidly #18342
Replies: 3 comments
-
|
I like this, a lot. Thank you! One thing: adafruit-ampy hasn't been maintained for some years, and its promised replacement never happened. mpremote, however, is maintained in parallel with MicroPython, and might be a better dependency to use. |
Beta Was this translation helpful? Give feedback.
-
|
Thank you for the feedback. I am glad you like it.
I will look into refactoring with mpremote's packages.
β¦On Mon, Nov 3, 2025, 2:39β―PM Stewart Russell ***@***.***> wrote:
I like this, a lot. Thank you!
One thing: adafruit-ampy hasn't been maintained for some years, and its
promised replacement never happened. mpremote
<https://github.com/micropython/micropython/tree/e0a9b7023b28ac920b9e8e82f9bb4e8fda49ab3e/tools/mpremote>,
however, is maintained in parallel with MicroPython, and might be a better
dependency to use.
β
Reply to this email directly, view it on GitHub
<#18342 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAELOWUCV363URRAOYLUZPT326OMXAVCNFSM6AAAAACKPDKSMKVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTIOBWGIYTOOA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
|
You may be interested to know that mpremote mount allows to develop against a board without needing to explicitly move files at all - they can be loaded directly from the host via the MicroPython virtual file system (VFS). This works also for importable things, like .py and .mpy files. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, fellow MicroPython users. I've been working on more complex projects lately. I wanted a way to split code into smaller files, organize module paths better, and sync only upload changes to the MCU. I created mp-sync.py as my solution. I've used different versions of it for the past 2 years to upload code to ESP32 and Raspberry Pi Pico RP2040, and I've finally decided to clean it up and share it with the broader MicroPython community.
You can check it out at: https://github.com/stratomancer/mp-sync
Beta Was this translation helpful? Give feedback.
All reactions