Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
Joey Hines | 5ff8b679df | |
Joey Hines | 16ba862b55 | |
Joey Hines | 8fff1281f2 |
3
LICENSE
3
LICENSE
|
@ -1,3 +1,6 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2018 Guillaume P.
|
||||||
Copyright (c) 2020 Joey Hines
|
Copyright (c) 2020 Joey Hines
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
# Rust Template
|
# Rust Bluepill Template
|
||||||
|
|
||||||
A template for my Rust projects. Uses [tmpl](https://git.jojodev.com/jolheiser/tmpl).
|
A template for my Rust projects. Uses [tmpl](https://git.jojodev.com/jolheiser/tmpl).
|
||||||
|
|
||||||
|
Inspiration: [blue-pill-quickstart](https://github.com/TeXitoi/blue-pill-quickstart)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
[MIT](LICENSE)
|
[MIT](LICENSE)
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
[target.thumbv7m-none-eabi]
|
||||||
|
runner = "{{runner}}"
|
||||||
|
|
||||||
|
rustflags = ["-C", "link-arg=-Tlink.x"]
|
||||||
|
|
||||||
|
[build]
|
||||||
|
target = "thumbv7m-none-eabi"
|
|
@ -7,3 +7,7 @@ edition = "{{rust_edition}}"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
stm32f1xx-hal = { version = "0.7", features = ["rt", "stm32f103" ] }
|
||||||
|
cortex-m = "0.7"
|
||||||
|
cortex-m-rt = { version = "0.6", features = ["device"] }
|
||||||
|
panic-semihosting = "0.5"
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
/* Linker script for the STM32F103C8T6 */
|
||||||
|
MEMORY
|
||||||
|
{
|
||||||
|
FLASH : ORIGIN = 0x08000000, LENGTH = 64K
|
||||||
|
RAM : ORIGIN = 0x20000000, LENGTH = 20K
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
source [find interface/stlink-v2.cfg]
|
||||||
|
source [find target/stm32f1x.cfg]
|
|
@ -0,0 +1,10 @@
|
||||||
|
target remote :3333
|
||||||
|
set print asm-demangle on
|
||||||
|
monitor arm semihosting enable
|
||||||
|
|
||||||
|
# detect unhandled exceptions, hard faults and panics
|
||||||
|
break DefaultHandler
|
||||||
|
break HardFault
|
||||||
|
break rust_begin_unwind
|
||||||
|
|
||||||
|
load
|
|
@ -1,3 +1,53 @@
|
||||||
fn main() {
|
//! Blinks an LED
|
||||||
println!("Hello, world!");
|
//!
|
||||||
|
//! This assumes that a LED is connected to pc13 as is the case on the blue pill board.
|
||||||
|
//!
|
||||||
|
//! Note: Without additional hardware, PC13 should not be used to drive an LED, see page 5.1.2 of
|
||||||
|
//! the reference manual for an explanation. This is not an issue on the blue pill.
|
||||||
|
//! Taken from https://github.com/stm32-rs/stm32f1xx-hal/blob/master/examples/blinky.rs
|
||||||
|
|
||||||
|
#![deny(unsafe_code)]
|
||||||
|
#![no_std]
|
||||||
|
#![no_main]
|
||||||
|
|
||||||
|
use panic_halt as _;
|
||||||
|
|
||||||
|
use nb::block;
|
||||||
|
|
||||||
|
use cortex_m_rt::entry;
|
||||||
|
use embedded_hal::digital::v2::OutputPin;
|
||||||
|
use stm32f1xx_hal::{pac, prelude::*, timer::Timer};
|
||||||
|
|
||||||
|
#[entry]
|
||||||
|
fn main() -> ! {
|
||||||
|
// Get access to the core peripherals from the cortex-m crate
|
||||||
|
let cp = cortex_m::Peripherals::take().unwrap();
|
||||||
|
// Get access to the device specific peripherals from the peripheral access crate
|
||||||
|
let dp = pac::Peripherals::take().unwrap();
|
||||||
|
|
||||||
|
// Take ownership over the raw flash and rcc devices and convert them into the corresponding
|
||||||
|
// HAL structs
|
||||||
|
let mut flash = dp.FLASH.constrain();
|
||||||
|
let mut rcc = dp.RCC.constrain();
|
||||||
|
|
||||||
|
// Freeze the configuration of all the clocks in the system and store the frozen frequencies in
|
||||||
|
// `clocks`
|
||||||
|
let clocks = rcc.cfgr.freeze(&mut flash.acr);
|
||||||
|
|
||||||
|
// Acquire the GPIOC peripheral
|
||||||
|
let mut gpioc = dp.GPIOC.split(&mut rcc.apb2);
|
||||||
|
|
||||||
|
// Configure gpio C pin 13 as a push-pull output. The `crh` register is passed to the function
|
||||||
|
// in order to configure the port. For pins 0-7, crl should be passed instead.
|
||||||
|
let mut led = gpioc.pc13.into_push_pull_output(&mut gpioc.crh);
|
||||||
|
// Configure the syst timer to trigger an update every second
|
||||||
|
let mut timer = Timer::syst(cp.SYST, &clocks).start_count_down(1.hz());
|
||||||
|
|
||||||
|
// Wait for the timer to trigger an update and change the state of the LED
|
||||||
|
loop {
|
||||||
|
block!(timer.wait()).unwrap();
|
||||||
|
led.set_high().unwrap();
|
||||||
|
block!(timer.wait()).unwrap();
|
||||||
|
led.set_low().unwrap();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,4 +13,8 @@ prompts:
|
||||||
default: joey@ahines.net
|
default: joey@ahines.net
|
||||||
- id: rust_edition
|
- id: rust_edition
|
||||||
label: Rust Edition
|
label: Rust Edition
|
||||||
default: 2021
|
default: "2021"
|
||||||
|
- id: runner
|
||||||
|
label: Run Command
|
||||||
|
default: "gdb-multiarch -q -x openocd.gdb"
|
||||||
|
help: "Command used by cargo run to start code on the target hw"
|
||||||
|
|
Loading…
Reference in New Issue