}
}
+fn configure_push_buttons() {
+ // Configure upper right push button.
+ gpio::set_direction(gpio::GPIOA, 1 << 12, gpio::Direction::Input);
+ port::set_af(port::PORTA, 12, 1);
+ port::set_pull(port::PORTA, 12, port::Pull::Up);
+}
+
#[no_mangle]
pub unsafe extern "C" fn _start() -> ! {
clock::configure();
gpio::set_direction(gpio::GPIOB, 1 << 1, gpio::Direction::Output);
port::set_af(port::PORTB, 1, 1);
- // Configure upper right push button.
- gpio::set_direction(gpio::GPIOA, 1 << 12, gpio::Direction::Input);
- port::set_af(port::PORTA, 12, 1);
- port::set_pull(port::PORTA, 12, port::Pull::Up);
+ configure_push_buttons();
enable_interrupts();