Search found 3 matches

by PieyeGmbH
Tue Jun 27, 2023 10:34 pm
Forum: Programs, Libraries and Tools
Topic: Install aioble with upip?
Replies: 18
Views: 111575

Re: Install aioble with upip?

That might help:
https://github.com/micropython/micropyt ... ree/master

for me, the following did the trick:
import mip
mip.install("aioble")

import aioble
by PieyeGmbH
Wed Sep 22, 2021 10:34 pm
Forum: Other Boards
Topic: [Nucleo-F767ZI] USB Mass storage content does not update
Replies: 2
Views: 3208

Re: [Nucleo-F767ZI] USB Mass storage content does not update

Apparently, there is no reason and no fix. I live with a workaround: disabling and reenabling USB does the trick. logFile.write("\n".encode()) logFile.flush() logFile.close() logAnnotation=None # unmount and remount sd card to update USB drive pyb.usb_mode(None) #pyb.usb_mode('VCP+MSC',msc=(pyb.SDCa...
by PieyeGmbH
Sun Aug 22, 2021 4:38 pm
Forum: Other Boards
Topic: [Nucleo-F767ZI] USB Mass storage content does not update
Replies: 2
Views: 3208

[Nucleo-F767ZI] USB Mass storage content does not update

Hy, I am using an Nucleo-F767ZI with an SD card extension. Everything works smoothly, I run code from flash and use sd card as log memory, which is written by my python code and can be read out USB mass storage access as external drive from PC. but the drive content of the USB mass storage does only...