//! GPIO Test
//!
//! Folowing pins are used:
//! GPIO2
//! GPIO4
#![no_std]
#![no_main]
use defmt_rtt as _;
use embedded_hal::digital::{InputPin as _, OutputPin as _, StatefulOutputPin as _};
use esp_hal::{
gpio::{GpioPin, Input, Output, PullDown, PushPull, IO},
peripherals::Peripherals,
};
struct Context {
io2: GpioPin, 2>,
io4: GpioPin