Search found 2 matches

by 2e0byo
Sat Oct 09, 2021 6:02 pm
Forum: General Discussion and Questions
Topic: littlefs - advantages & disadvantages
Replies: 33
Views: 29840

Re: littlefs - advantages & disadvantages

This is an old thread and thus things have changed: to check for littlefs on recent micropython builds this works: def check_for_littlefs(): from flashbdev import bdev buf = bytearray(16) bdev.readblocks(0, buf) return buf[8:16] == b"littlefs" check_for_littlefs() I expect this has been the standard...
by 2e0byo
Tue May 04, 2021 5:10 pm
Forum: General Discussion and Questions
Topic: Is MicroPython the right hammer for my nail?
Replies: 22
Views: 12348

Re: Is MicroPython the right hammer for my nail?

Whether it's the right hammer for your nail or not, it's a jolly useful hammer to have in the drawer. An observation from the student's point of view: The first programming language I ever liked was PIC18 assembler. (More fun that PIC16, and memory access is easier). Nothing I wrote in assembler is ...