| sdcard-unformatted --mount-point/string --spi-bus/Bus --cs/any -> Mount | Mounts an SD-card as a FAT file system under mount-point on the spi-bus without formatting the flash. |
|---|---|
| sdcard --mount-point/string --spi-bus/Bus --cs/any --max-files/int= --allocation-unit-size/int= -> Mount | Mounts an SD-card as a FAT file system under mount-point on the spi-bus and formats the SD-card with max-files and allocation-unit-size if it is not already formatted. |
| nor-unformatted --mount-point/string --spi-bus/Bus --cs/any --frequency/int= -> Mount | Mounts an external NOR flash chip on the spi-bus without formatting the flash. |
| nor --mount-point/string --spi-bus/Bus --cs/any --frequency/int= --max-files/int= --allocation-unit-size/int= -> Mount | Mounts an external NOR flash chip on the spi-bus and format the SD-card with max-files and allocation-unit-size if it is not formatted. |
| nand-unformatted --mount-point/string --spi-bus/Bus --cs/any --frequency/int= -> Mount | Mounts an external NAND flash chip on the spi-bus without formatting the flash. |
| nand --mount-point/string --spi-bus/Bus --cs/any --frequency/int= --max-files/int= --allocation-unit-size/int= -> Mount | Mounts an external NAND flash chip on the spi-bus and formats the flash with max-files and allocation-unit-size if it is not already formatted. |
class Pin:
number/int
constructor .number:
operator == other:
if other is not Pin: return false
return number == other.number
hash-code method. That is, if a class has a hash-code member, then the equality and hash-code must agree. If two instances are equal (a == b), then their hash codes must also be equal (a.hash-code == b.hash-code).