Skip to content

Instantly share code, notes, and snippets.

View eloylp's full-sized avatar
馃幆
Focusing

eloylp eloylp

馃幆
Focusing
View GitHub Profile
@rafacouto
rafacouto / main.rs
Created June 21, 2020 18:05
My first blinky with Rust embedded
#![no_std]
#![no_main]
use panic_halt as _; // you can put a breakpoint on `rust_begin_unwind` to catch panics
use cortex_m_rt::entry;
use stm32f4xx_hal as hal;
use crate::hal::{prelude::*, stm32};
#[entry]