v0.2.1
This commit is contained in:
14
CHANGELOG.md
14
CHANGELOG.md
@@ -5,6 +5,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v0.2.1] - 2017-07-14
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Troubleshooting documentation: how to fix the error of overwriting the
|
||||||
|
`.cargo/config` file when you meant to append text to it.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Xargo.toml: Changed the source of the `compiler-builtins` crate from git to
|
||||||
|
the `rust-src` component.
|
||||||
|
|
||||||
|
- Expanded the `device` example to do some I/O.
|
||||||
|
|
||||||
## [v0.2.0] - 2017-07-07
|
## [v0.2.0] - 2017-07-07
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ keywords = ["arm", "cortex-m", "template"]
|
|||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
name = "cortex-m-quickstart"
|
name = "cortex-m-quickstart"
|
||||||
repository = "https://github.com/japaric/cortex-m-quickstart"
|
repository = "https://github.com/japaric/cortex-m-quickstart"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.3.0"
|
cortex-m = "0.3.0"
|
||||||
@@ -14,7 +14,7 @@ cortex-m-semihosting = "0.2.0"
|
|||||||
|
|
||||||
[dependencies.cortex-m-rt]
|
[dependencies.cortex-m-rt]
|
||||||
features = ["abort-on-panic"]
|
features = ["abort-on-panic"]
|
||||||
version = "0.3.2"
|
version = "0.3.3"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
debug = true
|
debug = true
|
||||||
|
|||||||
@@ -26,28 +26,57 @@
|
|||||||
//!
|
//!
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
|
//! #![deny(warnings)]
|
||||||
|
//! #![feature(const_fn)]
|
||||||
//! #![no_std]
|
//! #![no_std]
|
||||||
//!
|
//!
|
||||||
//! extern crate cortex_m;
|
//! extern crate cortex_m;
|
||||||
|
//! extern crate cortex_m_semihosting;
|
||||||
//! #[macro_use(exception, interrupt)]
|
//! #[macro_use(exception, interrupt)]
|
||||||
//! extern crate stm32f103xx;
|
//! extern crate stm32f103xx;
|
||||||
//!
|
//!
|
||||||
//! use cortex_m::interrupt;
|
//! use core::cell::RefCell;
|
||||||
|
//! use core::fmt::Write;
|
||||||
|
//!
|
||||||
|
//! use cortex_m::interrupt::{self, Mutex};
|
||||||
|
//! use cortex_m::peripheral::SystClkSource;
|
||||||
|
//! use cortex_m_semihosting::hio::{self, HStdout};
|
||||||
|
//! use stm32f103xx::Interrupt;
|
||||||
|
//!
|
||||||
|
//! static HSTDOUT: Mutex<RefCell<Option<HStdout>>> =
|
||||||
|
//! Mutex::new(RefCell::new(None));
|
||||||
//!
|
//!
|
||||||
//! fn main() {
|
//! fn main() {
|
||||||
//! interrupt::free(|cs| {
|
//! interrupt::free(|cs| {
|
||||||
//! let _gpioa = stm32f103xx::GPIOA.borrow(cs);
|
//! let hstdout = HSTDOUT.borrow(cs);
|
||||||
//! // do something with GPIOA
|
//! if let Ok(fd) = hio::hstdout() {
|
||||||
|
//! *hstdout.borrow_mut() = Some(fd);
|
||||||
|
//! }
|
||||||
|
//!
|
||||||
|
//! let nvic = stm32f103xx::NVIC.borrow(cs);
|
||||||
|
//! nvic.enable(Interrupt::TIM2);
|
||||||
|
//!
|
||||||
|
//! let syst = stm32f103xx::SYST.borrow(cs);
|
||||||
|
//! syst.set_clock_source(SystClkSource::Core);
|
||||||
|
//! syst.set_reload(8_000_000); // 1s
|
||||||
|
//! syst.enable_counter();
|
||||||
|
//! syst.enable_interrupt();
|
||||||
//! });
|
//! });
|
||||||
//! }
|
//! }
|
||||||
//!
|
//!
|
||||||
//! exception!(SYS_TICK, tick, locals: {
|
//! exception!(SYS_TICK, tick);
|
||||||
//! ticks: u32 = 0;
|
|
||||||
//! });
|
|
||||||
//!
|
//!
|
||||||
//! fn tick(l: &mut SYS_TICK::Locals) {
|
//! fn tick() {
|
||||||
//! l.ticks += 1;
|
//! interrupt::free(|cs| {
|
||||||
//! // ..
|
//! let hstdout = HSTDOUT.borrow(cs);
|
||||||
|
//! if let Some(hstdout) = hstdout.borrow_mut().as_mut() {
|
||||||
|
//! writeln!(*hstdout, "Tick").ok();
|
||||||
|
//! }
|
||||||
|
//!
|
||||||
|
//! let nvic = stm32f103xx::NVIC.borrow(cs);
|
||||||
|
//!
|
||||||
|
//! nvic.set_pending(Interrupt::TIM2);
|
||||||
|
//! });
|
||||||
//! }
|
//! }
|
||||||
//!
|
//!
|
||||||
//! interrupt!(TIM2, tock, locals: {
|
//! interrupt!(TIM2, tock, locals: {
|
||||||
@@ -56,7 +85,13 @@
|
|||||||
//!
|
//!
|
||||||
//! fn tock(l: &mut TIM2::Locals) {
|
//! fn tock(l: &mut TIM2::Locals) {
|
||||||
//! l.tocks += 1;
|
//! l.tocks += 1;
|
||||||
//! // ..
|
//!
|
||||||
|
//! interrupt::free(|cs| {
|
||||||
|
//! let hstdout = HSTDOUT.borrow(cs);
|
||||||
|
//! if let Some(hstdout) = hstdout.borrow_mut().as_mut() {
|
||||||
|
//! writeln!(*hstdout, "Tock ({})", l.tocks).ok();
|
||||||
|
//! }
|
||||||
|
//! });
|
||||||
//! }
|
//! }
|
||||||
//! ```
|
//! ```
|
||||||
// Auto-generated. Do not modify.
|
// Auto-generated. Do not modify.
|
||||||
|
|||||||
Reference in New Issue
Block a user