#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use panic_halt as _;
#[rtic::app(device = stm32f4xx_hal::pac, peripherals = true)]
mod app {
use stm32f4xx_hal::{
gpio::{gpioa::PA0, gpioc::PC13, Edge, Input, Output, PinState, Pull},
prelude::*,
};
const SYSFREQ: u32 = 100_000_000;
// Shared resources go here
#[shared]
struct Shared {}
// Local resources go here
#[local]
struct Local {
button: PA0,
led: PC13