Andrew Leech
Andrew Leech
FWIW I just tested mpremote v1.22 on windows 11 / cpython 3.9 and it did work as-is. ``` C:\Users\anl>set EDITOR=subl -w C:\Users\anl>mpremote edit main.py edit :main.py C:\Users\anl> ``` ``` PS...
Ah... yes I can confirm that bug still exists! ``` C:\Users\anl>mpremote edit main.py edit :main.py 'C:\Program' is not recognized as an internal or external command, operable program or batch file....
For my Linux box to connect to the mib I had to use .ssh/config settings like: ``` Host mib StrictHostKeyChecking no Hostname 192.168.0.207 User root HostKeyAlgorithms +ssh-rsa PubkeyAcceptedAlgorithms +ssh-rsa ```...
Hi, the error message you post refers to line 7 of your main.py, it's not entirely clear which command that refers to. Can you try to run each line manually...
On official micropython I just ran the following on repl: ``` python import machine sd = machine.SDCard(slot=2, width=1, sck=12, miso=13, mosi=11, cs=10, freq=20000000) ``` and it ran without throwing an...
If you convert your app to use asyncio and also install and enable aiorepl then mpremote can communicate with your device without interrupting your app, it all works simultaneously.
For that you would wrap it in async.StrramReader
Thanks for the feedback. I did see #57 (after I'd started making the changes here) and still thought this might be worth sharing as it's a much smaller change, mostly...
Thanks for putting this together @jimmo, consolidating new machine api's in a way that should be compatible across many ports is a seriously non-trivial task. @jonathanhogg & @IhorNehrutsa I'm personally...
Looking at this with fresh eyes, I know that some boards eg. pyboard have the user switch and leds that can be used as startup selections to get to bootloader,...