use embassy_stm32 as hal;usehal::peripherals::*;/// Codec and Pins for the PCM3060 audio codec
/// The codec will stay empty since PCM3060 is configured in 'hardware mode'
/// via its config pins
pubstructCodec;#[allow(non_snake_case)]pubstructPins{pubMCLK_A: PE2, // SAI1 MCLK_A
pubSCK_A: PE5, // SAI1 SCK_A
pubFS_A: PE4, // SAI1 FS_A
pubSD_A: PE6, // SAI1 SD_A
pubSD_B: PE3, // SAI1 SD_B
}// ToDo