Search found 5 matches

by smhodge42
Mon May 16, 2022 6:02 pm
Forum: MicroPython pyboard
Topic: What is the maximum SD card size for pyboard 1.1?
Replies: 2
Views: 21074

Re: What is the maximum SD card size for pyboard 1.1?

I use 32 GB without any problems. I don't think anything larger will work.
by smhodge42
Mon May 02, 2022 5:23 pm
Forum: MicroPython pyboard
Topic: Is pyboard v1.1 officially discontinued?
Replies: 4
Views: 3111

Re: Is pyboard v1.1 officially discontinued?

I would like to know the answer to that question too, but meanwhile you can still find them elsewhere. Adafruit has some in stock I think, which can also be purchased through Mouser. Digi-Key is out of stock. Sparkfun no longer carries them, which loops back to your question.
by smhodge42
Sat Jan 22, 2022 3:34 pm
Forum: MicroPython pyboard
Topic: Control a pyboard by another pyboard over UART
Replies: 12
Views: 35056

Re: Control a pyboard by another pyboard over I2C

I have done functionally the same thing (create a bi-directional I2C bus) between a pyboard and an AVR Xmega using a separate digital line as a "service request" line. The Xmega pulls SRQ low when it needs to send a packet to the pyboard and the pyboard then issues 2 I2C reads, one to get the length...
by smhodge42
Thu Dec 09, 2021 7:11 pm
Forum: MicroPython pyboard
Topic: Windows COM port number
Replies: 4
Views: 19427

Re: Windows COM port number

I tried adding <pid> to the boot.py file, "pyb.usb_mode('VCP', pid =nn)", where nn was the original "from factory/after reset" number. That did not work. Windows promptly just assigned yet another new COM port number. However, by using Windows Device Manager I was able to get things working with the...
by smhodge42
Wed Dec 08, 2021 6:35 pm
Forum: MicroPython pyboard
Topic: Windows COM port number
Replies: 4
Views: 19427

Windows COM port number

Is there a way to fix the COM port number? When I get a new board, or after I do an upgrade of the firmware or reset to factory state with the USR and RST buttons, the COM port number is a certain value. However I use a boot.py file of import machine import pyb pyb.usb_mode('VCP') for my normal use ...