use esp_idf_hal::{
gpio::*,
peripherals::Peripherals,
prelude::*,
};
use embedded-sdmmc::*;
use esp_idf_sys as _; // If using the `binstart` feature of `esp-idf-sys`, always keep this module imported
const FILE_NAME: &'static str = "logs.txt";
fn main() {
// It is necessary to call this function once. Otherwise some patches to the runtime
// implemented by esp-idf-sys might not link properly. See https://github.com/esp-rs/esp-idf-template/issues/71
esp_idf_sys::link_patches();
let peripherals = Peripherals::take().unwrap();
println!("Hello, world........!");
}