Search found 2 matches

by flegarrec
Sat Oct 14, 2017 2:36 pm
Forum: ESP8266 boards
Topic: why os.listdir return ENODEV
Replies: 28
Views: 34609

Re: why os.listdir return ENODEV

So, the filesystem format i found in the post mentionned above did not work: [code] import os import flashbdev os.VfsFat.mkfs(flashbdev.bdev) [/code] But, this one found via googeling on VfsFat worked! [code] import uos import flashbdev uos.VfsFat.mkfs(flashbdev.bdev) [/code] i don't know why. But, ...
by flegarrec
Mon Oct 09, 2017 10:01 am
Forum: ESP8266 boards
Topic: why os.listdir return ENODEV
Replies: 28
Views: 34609

Re: why os.listdir return ENODEV

Hello, i am quite new to ESP8266 and i face the os.listdir() problem generating pages of \x00 on my ESP12F [code] >>> import os >>> os.listdir() ['\x00\x00\x00\x00\x00\x00\x00\x00.\x00\x00\x00', '\x00\x00\x00\x00\x00\x00\x00\x00.\x00\x00\x00', '\x00\x00\x00\x00\x00\x00\x00\x00.\x00\x00\x00', '\x00\x...