Search found 15 matches

by josverl
Tue Feb 01, 2022 8:10 am
Forum: General Discussion and Questions
Topic: Can't install module through upip, error message is not clear
Replies: 3
Views: 7001

Re: Can't install module through upip, error message is not clear

What Micropython version are you using ?
If its an older version (MicroPython < 1.14 ?) then I remember issues with a certificate change that caused similar issues until upip had been updated.
by josverl
Thu Jan 27, 2022 9:20 am
Forum: Programs, Libraries and Tools
Topic: VS Code Pymar microython
Replies: 9
Views: 35358

Re: VS Code Pymar microython

@Robert, pymakr works fine with any port of micropython that exposes a serialport that has a driver on you Host platform. and indeed , the Javascript serialport OSS library that is used has it's challenges in keeping up with the electron versions . In the recent iterations Pycom has been much more r...
by josverl
Thu Jan 27, 2022 9:15 am
Forum: Programs, Libraries and Tools
Topic: VS Code Pymar microython
Replies: 9
Views: 35358

Re: VS Code Pymar microython

in order to get better language support for MicroPython in VScode, pylint, pycharm and others you can take a look at https://micropython-stubs.readthedocs.io/ Its not perfect, but I try to make it not wrong while still helping to write code simpler and with fewer errors. allows you to select a speci...
by josverl
Tue Jan 18, 2022 9:20 am
Forum: MicroPython pyboard
Topic: howto automatically restart a Pybv11 after flashing
Replies: 2
Views: 19568

Re: howto automatically restart a Pybv11 after flashing

Thanks Dave, Works like a charm on Windows as well :D For me the process is a bit different , but the same parameters work for my scenario. $filename = "./PYB_11/pybv11-network-20210902-v1.17.dfu" $serialport = "COM7" # Put device into bootloader mode python .\Tools\pyboard.py -d $serialPort --comma...
by josverl
Mon Jan 10, 2022 8:15 pm
Forum: MicroPython pyboard
Topic: howto automatically restart a Pybv11 after flashing
Replies: 2
Views: 19568

howto automatically restart a Pybv11 after flashing

for an automated CI/CD process I would like to be able to run the following sequence without the need for manual operation: preferably on windows , but ubuntu is fine if required. 1. set board in bootloader mode 2. download a new firmware v1.xx with dfu-util 3. reset/restart the board 4. upload some...
by josverl
Tue Sep 07, 2021 10:40 pm
Forum: Programs, Libraries and Tools
Topic: mpremote copy folder from board to PC
Replies: 0
Views: 2089

mpremote copy folder from board to PC

Im trying my hand at mpremote , and find it interesting, but run into some issues where I could use some help. I want to : 1)upload some files 2)import/execute a module this creates a folder structure with some 50-70 files 3) then download these files 1) and 2) work like a charm mpremote cp createst...
by josverl
Mon May 18, 2020 9:05 am
Forum: ESP32 boards
Topic: Making micropython with ULAB for ESP32
Replies: 10
Views: 7674

Re: Making micropython with ULAB for ESP32

what would be a good way to change these setting (-Wdouble-promotion -Wsign-compare -Wfloat-conversion) only for the ulab files and maintain the for the rest of the code and other C modules ? I tried various options with the make files and find that thre is much i do not understand nor can find docu...
by josverl
Sun Apr 21, 2019 2:07 pm
Forum: Programs, Libraries and Tools
Topic: micropython stubs for linting
Replies: 3
Views: 8097

Re: micropython stubs for linting

Hi Paul, sorry for the late response. I did see the typing module, but i do not see how that would help for this use case. As VSCode is running on the PC/Laptop, i would expect that a full pythin instance is available there to support the syntaxhighlighting and linting. are you suggesting that also ...
by josverl
Sun Apr 21, 2019 1:55 pm
Forum: Programs, Libraries and Tools
Topic: MicroPython with VisualStudio Code
Replies: 10
Views: 19407

Re: MicroPython with VisualStudio Code

Thanks for the connect,
it would be cool to merge efforts and jointly move forward.

/Jos
by josverl
Mon Apr 08, 2019 10:31 pm
Forum: Programs, Libraries and Tools
Topic: MicroPython with VisualStudio Code
Replies: 10
Views: 19407

Re: MicroPython with VisualStudio Code

Hi , Ive been working on a solution to help with both code completion and linting for VSCode. It's still quite experimental, and requires some manual configuration but I am gently optimistic. https://github.com/Josverl/micropython-stubber The way it currently works is to - generate the subs on the M...