/examples/pico_spi_sd_card.rs
//! # Pico SD Card Example
//!
//! Reads and writes a file from/to the SD Card that is formatted in FAT32.
//! This example uses the SPI0 device of the Raspberry Pi Pico on the
//! pins 4,5,6 and 7. If you don't use an external 3.3V power source,
//! you can connect the +3.3V output on pin 36 to the SD card.
//!
//! SD Cards up to 2TB are supported by the `embedded_sdmmc` crate.
//! I've tested this with a 64GB micro SD card.
//!
//! You need to format the card with an regular old FAT32 filesystem
//! and also make sure the first partition has the right type. This is how your
//! `fdisk` output should look like:
//!
//! ```text
//! fdisk /dev/sdj
//!
//! Welcome to fdisk (util-linux 2.34).
//! Changes will remain in memory only, until you decide to write them.
//! Be careful before using the write command.
//!
//! Command (m for help): Disk /dev/sdj:
//! 59,49 GiB, 63864569856 bytes, 124735488 sectors
//! Disk model: SD/MMC/MS/MSPRO
//! Units: sectors of 1 * 512 = 512 bytes
//! Sector size (logical/physical): 512 bytes / 512 bytes
//! I/O size (minimum/optimal): 512 bytes / 512 bytes
//! Disklabel type: dos
//! Disk identifier: 0x00000000
//!
//! Device Boot Start End Sectors Size Id Type
//! /dev/sdj1 2048 124735487 124733440 59,5G c W95 FAT32 (LBA)
//! ```
//!
//! The important bit here is the _Type_ with `W95 FAT32 (LBA)`, other types
//! are rejected by the `embedded_sdmmc` filesystem implementation.
//!
//! Formatting the partition can be done using `mkfs.fat`:
//!
//! $ mkfs.fat /dev/sdj1
//!
//! In the following ASCII art the SD card is also connected to 5 strong pull up
//! resistors. I've found varying values for these, from 50kOhm, 10kOhm
//! down to 5kOhm.
//! Stronger pull up resistors will eat more amperes, but also allow faster
//! data rates.
//!
//! ```text
//! +3.3V
//! Pull Ups ->||||
//! 4x[5kOhm]
//! ||| \
//! _______________ ||| \
//! | DAT2/NC 9\---o|| \ _|USB|_
//! | S DAT3/CS 1|---o+----+------SS--\ |1 R 40|
//! | D CMD/DI 2|----o----+-----MOSI-+-\ |2 P 39|
//! | VSS1 3|-- GND | | | GND-|3 38|- GND
//! | C VDD 4|-- +3.3V | /--SCK--+-+----SPI0 SCK-|4 P 37|
//! | A CLK/SCK 5|---------+-/ | \----SPI0 TX--|5 I 36|- +3.3V
//! | R VSS2 6|-- GND | /--MISO-+------SPI0 RX--|6 C |
//! | D DAT0/DO 7|---------o-/ \------SPI0 CSn-|7 O |
//! | DAT1/IRQ 8|-[5k]- +3.3V | |
//! """""""""""""""" | |
//! | |
//! .........
//! |20 21|
//! """""""
//! Symbols:
//! - (+) crossing lines, not connected
//! - (o) connected lines
//! ```
//!
//! The example can either be used with a probe to receive debug output
//! and also the LED is used as status output. There are different blinking
//! patterns.
//!
//! For every successful stage in the example the LED will blink long once.
//! If everything is successful (9 long blink signals), the example will go
//! into a loop and either blink in a _"short long"_ or _"short short long"_ pattern.
//!
//! If there are 4 different error patterns, all with short blinking pulses:
//!
//! - **3 short blink (in a loop)**: Card size could not be retrieved.
//! - **4 short blink (in a loop)**: Error getting volume/partition 0.
//! - **5 short blink (in a loop)**: Error opening root directory.
//! - **6 short blink (in a loop)**: Could not open file 'O.TST'.
//!
//! See the `Cargo.toml` file for Copyright and license details.
use RefCell;
// The macro for our start-up function
use entry;
// info!() and error!() macros for printing information to the debug output
use *;
use defmt_rtt as _;
// Ensure we halt the program on panic (if we don't mention this crate it won't
// be linked)
use panic_halt as _;
// Pull in any important traits
use *;
// Embed the `Hz` function/trait:
use RateExtU32;
// A shorter alias for the Peripheral Access Crate, which provides low-level
// register access
use pac;
// Import the SPI abstraction:
use spi;
// Import the GPIO abstraction:
use gpio;
// A shorter alias for the Hardware Abstraction Layer, which provides
// higher-level drivers.
use hal;
// Link in the embedded_sdmmc crate.
// The `SdMmcSpi` is used for block level access to the card.
// And the `VolumeManager` gives access to the FAT filesystem functions.
use ;
// Get the file open mode enum:
use Mode;
use DelayMs;
use DelayUs;
/// A dummy timesource, which is mostly important for creating files.
;
// Setup some blinking codes:
const BLINK_OK_LONG: = ;
const BLINK_OK_SHORT_LONG: = ;
const BLINK_OK_SHORT_SHORT_LONG: = ;
const BLINK_ERR_3_SHORT: = ;
const BLINK_ERR_4_SHORT: = ;
const BLINK_ERR_5_SHORT: = ;
const BLINK_ERR_6_SHORT: = ;
!
!
// Can be removed once we have https://github.com/rp-rs/rp-hal/pull/614,
// ie. when we move to rp2040-hal 0.9