(self, n, buf, offset=0)
| 28 | self.sectorsize = flash.flash_sectorsize() |
| 29 | |
| 30 | def readblocks(self, n, buf, offset=0): |
| 31 | self.flash.flash_read(n * self.sectorsize + offset, buf) |
| 32 | |
| 33 | def writeblocks(self, n, buf, offset=0): |
| 34 | if offset == 0: |
nothing calls this directly
no test coverage detected