Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
578dfc7f86 | ||
|
|
23ae289bf4 | ||
|
|
5206ef79d2 | ||
|
|
46c97c6cee | ||
|
|
ba8994a2ed | ||
|
|
7ebac078c0 | ||
|
|
d002e0f239 | ||
|
|
9f573d73b2 | ||
|
|
bf91f60d40 |
@@ -4,6 +4,7 @@ rustflags = [
|
||||
"-C", "link-arg=-Tlink.x",
|
||||
"-C", "linker=arm-none-eabi-ld",
|
||||
"-Z", "linker-flavor=ld",
|
||||
"-Z", "thinlto=no",
|
||||
]
|
||||
|
||||
[target.thumbv7m-none-eabi]
|
||||
@@ -12,6 +13,7 @@ rustflags = [
|
||||
"-C", "link-arg=-Tlink.x",
|
||||
"-C", "linker=arm-none-eabi-ld",
|
||||
"-Z", "linker-flavor=ld",
|
||||
"-Z", "thinlto=no",
|
||||
]
|
||||
|
||||
[target.thumbv7em-none-eabi]
|
||||
@@ -20,6 +22,7 @@ rustflags = [
|
||||
"-C", "link-arg=-Tlink.x",
|
||||
"-C", "linker=arm-none-eabi-ld",
|
||||
"-Z", "linker-flavor=ld",
|
||||
"-Z", "thinlto=no",
|
||||
]
|
||||
|
||||
[target.thumbv7em-none-eabihf]
|
||||
@@ -28,4 +31,5 @@ rustflags = [
|
||||
"-C", "link-arg=-Tlink.x",
|
||||
"-C", "linker=arm-none-eabi-ld",
|
||||
"-Z", "linker-flavor=ld",
|
||||
"-Z", "thinlto=no",
|
||||
]
|
||||
|
||||
19
CHANGELOG.md
19
CHANGELOG.md
@@ -5,6 +5,22 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [v0.2.5] - 2018-02-26
|
||||
|
||||
### Added
|
||||
|
||||
- Comments to Cargo.toml and Xargo.toml to make it easier to try the examples.
|
||||
|
||||
### Fixed
|
||||
|
||||
- The `allocator` example to use the `#[global_allocator]` feature.
|
||||
|
||||
## [v0.2.4] - 2018-01-26
|
||||
|
||||
### Changed
|
||||
|
||||
- Disable ThinLTO which causes extreme binary size bloat. See rust-lang/rust#47770 for details.
|
||||
|
||||
## [v0.2.3] - 2018-01-20
|
||||
|
||||
### Changed
|
||||
@@ -121,7 +137,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
- Initial release
|
||||
|
||||
[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.3...HEAD
|
||||
[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.4...HEAD
|
||||
[v0.2.4]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.3...v0.2.4
|
||||
[v0.2.3]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.2...v0.2.3
|
||||
[v0.2.2]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.1...v0.2.2
|
||||
[v0.2.1]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.0...v0.2.1
|
||||
|
||||
15
Cargo.toml
15
Cargo.toml
@@ -6,15 +6,24 @@ keywords = ["arm", "cortex-m", "template"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
name = "cortex-m-quickstart"
|
||||
repository = "https://github.com/japaric/cortex-m-quickstart"
|
||||
version = "0.2.3"
|
||||
version = "0.2.5"
|
||||
|
||||
[dependencies]
|
||||
cortex-m = "0.3.0"
|
||||
cortex-m = "0.4.0"
|
||||
cortex-m-semihosting = "0.2.0"
|
||||
# alloc-cortex-m release doesn't use linked_list_allocator v0.5.0 yet.
|
||||
# Uncomment for the allocator example.
|
||||
#alloc-cortex-m = "0.3.2"
|
||||
|
||||
[dependencies.cortex-m-rt]
|
||||
features = ["abort-on-panic"]
|
||||
version = "0.3.12"
|
||||
# Comment for the panic example.
|
||||
features = ["abort-on-panic"]
|
||||
|
||||
# Uncomment for the device example.
|
||||
# [dependencies.stm32f103xx]
|
||||
# features = ["rt"]
|
||||
# version = "0.8.0"
|
||||
|
||||
# disable both incremental compilation and parallel codegen to reduce the chances of running into
|
||||
# rust-lang/rust#47074
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
[dependencies.core]
|
||||
stage = 0
|
||||
|
||||
# [dependencies.alloc] # Uncomment for the alloc example.
|
||||
# stage = 0
|
||||
|
||||
[dependencies.compiler_builtins]
|
||||
features = ["mem"]
|
||||
stage = 1
|
||||
@@ -1,6 +1,6 @@
|
||||
//! How to use the heap and a dynamic memory allocator
|
||||
//!
|
||||
//! To compile this example you'll need to build the collections crate as part
|
||||
//! To compile this example you'll need to build the alloc crate as part
|
||||
//! of the Xargo sysroot. To do that change the Xargo.toml file to look like
|
||||
//! this:
|
||||
//!
|
||||
@@ -8,7 +8,7 @@
|
||||
//! [dependencies.core]
|
||||
//! stage = 0
|
||||
//!
|
||||
//! [dependencies.collections] # NEW
|
||||
//! [dependencies.alloc] # NEW
|
||||
//! stage = 0
|
||||
//!
|
||||
//! [dependencies.compiler_builtins]
|
||||
@@ -25,15 +25,15 @@
|
||||
//!
|
||||
//! ---
|
||||
|
||||
#[allow(deprecated)]
|
||||
#![feature(collections)]
|
||||
#![feature(alloc)]
|
||||
#![feature(used)]
|
||||
#![feature(global_allocator)]
|
||||
#![no_std]
|
||||
|
||||
// This is the allocator crate; you can use a different one
|
||||
extern crate alloc_cortex_m;
|
||||
#[macro_use]
|
||||
extern crate collections;
|
||||
extern crate alloc;
|
||||
extern crate cortex_m;
|
||||
extern crate cortex_m_rt;
|
||||
extern crate cortex_m_semihosting;
|
||||
@@ -42,25 +42,21 @@ use core::fmt::Write;
|
||||
|
||||
use cortex_m::asm;
|
||||
use cortex_m_semihosting::hio;
|
||||
use alloc_cortex_m::CortexMHeap;
|
||||
|
||||
#[global_allocator]
|
||||
static ALLOCATOR: CortexMHeap = CortexMHeap::empty();
|
||||
|
||||
extern "C" {
|
||||
static mut _sheap: u32;
|
||||
static mut _eheap: u32;
|
||||
}
|
||||
|
||||
fn main() {
|
||||
// Initialize the allocator
|
||||
unsafe {
|
||||
extern "C" {
|
||||
// Start of the heap
|
||||
static mut _sheap: usize;
|
||||
}
|
||||
|
||||
// Size of the heap in words (1 word = 4 bytes)
|
||||
// NOTE The bigger the heap the greater the chance to run into a stack
|
||||
// overflow (collision between the stack and the heap)
|
||||
const SIZE: isize = 256;
|
||||
|
||||
// End of the heap
|
||||
let _eheap = (&mut _sheap as *mut _).offset(SIZE);
|
||||
|
||||
alloc_cortex_m::init(&mut _sheap, _eheap);
|
||||
}
|
||||
let start = unsafe { &mut _sheap as *mut u32 as usize };
|
||||
let end = unsafe { &mut _eheap as *mut u32 as usize };
|
||||
unsafe { ALLOCATOR.init(start, end - start) }
|
||||
|
||||
// Growable array allocated on the heap
|
||||
let xs = vec![0, 1, 2];
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
//! $ edit Cargo.toml && cat $_
|
||||
//! [dependencies.stm32f103xx]
|
||||
//! features = ["rt"]
|
||||
//! version = "0.7.0"
|
||||
//! version = "0.8.0"
|
||||
//! ```
|
||||
//!
|
||||
//! ---
|
||||
@@ -37,24 +37,29 @@ use core::cell::RefCell;
|
||||
use core::fmt::Write;
|
||||
|
||||
use cortex_m::interrupt::{self, Mutex};
|
||||
use cortex_m::peripheral::SystClkSource;
|
||||
use cortex_m::peripheral::syst::SystClkSource;
|
||||
use cortex_m_semihosting::hio::{self, HStdout};
|
||||
use stm32f103xx::Interrupt;
|
||||
|
||||
static HSTDOUT: Mutex<RefCell<Option<HStdout>>> =
|
||||
Mutex::new(RefCell::new(None));
|
||||
|
||||
static NVIC: Mutex<RefCell<Option<cortex_m::peripheral::NVIC>>> =
|
||||
Mutex::new(RefCell::new(None));
|
||||
|
||||
fn main() {
|
||||
let global_p = cortex_m::Peripherals::take().unwrap();
|
||||
interrupt::free(|cs| {
|
||||
let hstdout = HSTDOUT.borrow(cs);
|
||||
if let Ok(fd) = hio::hstdout() {
|
||||
*hstdout.borrow_mut() = Some(fd);
|
||||
}
|
||||
|
||||
let nvic = stm32f103xx::NVIC.borrow(cs);
|
||||
let mut nvic = global_p.NVIC;
|
||||
nvic.enable(Interrupt::TIM2);
|
||||
*NVIC.borrow(cs).borrow_mut() = Some(nvic);
|
||||
|
||||
let syst = stm32f103xx::SYST.borrow(cs);
|
||||
let mut syst = global_p.SYST;
|
||||
syst.set_clock_source(SystClkSource::Core);
|
||||
syst.set_reload(8_000_000); // 1s
|
||||
syst.enable_counter();
|
||||
@@ -71,9 +76,9 @@ fn tick() {
|
||||
writeln!(*hstdout, "Tick").ok();
|
||||
}
|
||||
|
||||
let nvic = stm32f103xx::NVIC.borrow(cs);
|
||||
|
||||
if let Some(nvic) = NVIC.borrow(cs).borrow_mut().as_mut() {
|
||||
nvic.set_pending(Interrupt::TIM2);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -20,14 +20,13 @@
|
||||
extern crate cortex_m;
|
||||
extern crate cortex_m_rt;
|
||||
|
||||
use cortex_m::{asm, interrupt, peripheral};
|
||||
use cortex_m::{asm, Peripherals};
|
||||
|
||||
fn main() {
|
||||
interrupt::free(|cs| {
|
||||
let itm = peripheral::ITM.borrow(&cs);
|
||||
let p = Peripherals::take().unwrap();
|
||||
let mut itm = p.ITM;
|
||||
|
||||
iprintln!(&itm.stim[0], "Hello, world!");
|
||||
});
|
||||
iprintln!(&mut itm.stim[0], "Hello, world!");
|
||||
}
|
||||
|
||||
// As we are not using interrupts, we just register a dummy catch all handler
|
||||
|
||||
@@ -29,7 +29,7 @@ fn main() {
|
||||
|
||||
#[lang = "panic_fmt"]
|
||||
#[no_mangle]
|
||||
unsafe extern "C" fn rust_begin_unwind(
|
||||
pub unsafe extern "C" fn rust_begin_unwind(
|
||||
args: core::fmt::Arguments,
|
||||
file: &'static str,
|
||||
line: u32,
|
||||
@@ -40,7 +40,7 @@ unsafe extern "C" fn rust_begin_unwind(
|
||||
.and_then(|_| {
|
||||
stdout
|
||||
.write_fmt(args)
|
||||
.and_then(|_| writeln!(stdout, "', {}:{}", file, line))
|
||||
.and_then(|_| writeln!(stdout, "', {}:{}:{}", file, line, col))
|
||||
})
|
||||
.ok();
|
||||
}
|
||||
|
||||
3
memory.x
3
memory.x
@@ -18,3 +18,6 @@ MEMORY
|
||||
/* This is required only on microcontrollers that store some configuration right
|
||||
after the vector table */
|
||||
/* _stext = ORIGIN(FLASH) + 0x400; */
|
||||
|
||||
/* Size of the heap (in bytes) */
|
||||
/* _heap_size = 1024; */
|
||||
|
||||
@@ -22,14 +22,13 @@
|
||||
//! extern crate cortex_m;
|
||||
//! extern crate cortex_m_rt;
|
||||
//!
|
||||
//! use cortex_m::{asm, interrupt, peripheral};
|
||||
//! use cortex_m::{asm, Peripherals};
|
||||
//!
|
||||
//! fn main() {
|
||||
//! interrupt::free(|cs| {
|
||||
//! let itm = peripheral::ITM.borrow(&cs);
|
||||
//! let p = Peripherals::take().unwrap();
|
||||
//! let mut itm = p.ITM;
|
||||
//!
|
||||
//! iprintln!(&itm.stim[0], "Hello, world!");
|
||||
//! });
|
||||
//! iprintln!(&mut itm.stim[0], "Hello, world!");
|
||||
//! }
|
||||
//!
|
||||
//! // As we are not using interrupts, we just register a dummy catch all handler
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
//!
|
||||
//! #[lang = "panic_fmt"]
|
||||
//! #[no_mangle]
|
||||
//! unsafe extern "C" fn rust_begin_unwind(
|
||||
//! pub unsafe extern "C" fn rust_begin_unwind(
|
||||
//! args: core::fmt::Arguments,
|
||||
//! file: &'static str,
|
||||
//! line: u32,
|
||||
@@ -42,7 +42,7 @@
|
||||
//! .and_then(|_| {
|
||||
//! stdout
|
||||
//! .write_fmt(args)
|
||||
//! .and_then(|_| writeln!(stdout, "', {}:{}", file, line))
|
||||
//! .and_then(|_| writeln!(stdout, "', {}:{}:{}", file, line, col))
|
||||
//! })
|
||||
//! .ok();
|
||||
//! }
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
//! $ edit Cargo.toml && cat $_
|
||||
//! [dependencies.stm32f103xx]
|
||||
//! features = ["rt"]
|
||||
//! version = "0.7.0"
|
||||
//! version = "0.8.0"
|
||||
//! ```
|
||||
//!
|
||||
//! ---
|
||||
@@ -39,24 +39,29 @@
|
||||
//! use core::fmt::Write;
|
||||
//!
|
||||
//! use cortex_m::interrupt::{self, Mutex};
|
||||
//! use cortex_m::peripheral::SystClkSource;
|
||||
//! use cortex_m::peripheral::syst::SystClkSource;
|
||||
//! use cortex_m_semihosting::hio::{self, HStdout};
|
||||
//! use stm32f103xx::Interrupt;
|
||||
//!
|
||||
//! static HSTDOUT: Mutex<RefCell<Option<HStdout>>> =
|
||||
//! Mutex::new(RefCell::new(None));
|
||||
//!
|
||||
//! static NVIC: Mutex<RefCell<Option<cortex_m::peripheral::NVIC>>> =
|
||||
//! Mutex::new(RefCell::new(None));
|
||||
//!
|
||||
//! fn main() {
|
||||
//! let global_p = cortex_m::Peripherals::take().unwrap();
|
||||
//! interrupt::free(|cs| {
|
||||
//! let hstdout = HSTDOUT.borrow(cs);
|
||||
//! if let Ok(fd) = hio::hstdout() {
|
||||
//! *hstdout.borrow_mut() = Some(fd);
|
||||
//! }
|
||||
//!
|
||||
//! let nvic = stm32f103xx::NVIC.borrow(cs);
|
||||
//! let mut nvic = global_p.NVIC;
|
||||
//! nvic.enable(Interrupt::TIM2);
|
||||
//! *NVIC.borrow(cs).borrow_mut() = Some(nvic);
|
||||
//!
|
||||
//! let syst = stm32f103xx::SYST.borrow(cs);
|
||||
//! let mut syst = global_p.SYST;
|
||||
//! syst.set_clock_source(SystClkSource::Core);
|
||||
//! syst.set_reload(8_000_000); // 1s
|
||||
//! syst.enable_counter();
|
||||
@@ -73,9 +78,9 @@
|
||||
//! writeln!(*hstdout, "Tick").ok();
|
||||
//! }
|
||||
//!
|
||||
//! let nvic = stm32f103xx::NVIC.borrow(cs);
|
||||
//!
|
||||
//! if let Some(nvic) = NVIC.borrow(cs).borrow_mut().as_mut() {
|
||||
//! nvic.set_pending(Interrupt::TIM2);
|
||||
//! }
|
||||
//! });
|
||||
//! }
|
||||
//!
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
//! How to use the heap and a dynamic memory allocator
|
||||
//!
|
||||
//! To compile this example you'll need to build the collections crate as part
|
||||
//! To compile this example you'll need to build the alloc crate as part
|
||||
//! of the Xargo sysroot. To do that change the Xargo.toml file to look like
|
||||
//! this:
|
||||
//!
|
||||
@@ -8,7 +8,7 @@
|
||||
//! [dependencies.core]
|
||||
//! stage = 0
|
||||
//!
|
||||
//! [dependencies.collections] # NEW
|
||||
//! [dependencies.alloc] # NEW
|
||||
//! stage = 0
|
||||
//!
|
||||
//! [dependencies.compiler_builtins]
|
||||
@@ -27,15 +27,15 @@
|
||||
//!
|
||||
//! ```
|
||||
//!
|
||||
//! #[allow(deprecated)]
|
||||
//! #![feature(collections)]
|
||||
//! #![feature(alloc)]
|
||||
//! #![feature(used)]
|
||||
//! #![feature(global_allocator)]
|
||||
//! #![no_std]
|
||||
//!
|
||||
//! // This is the allocator crate; you can use a different one
|
||||
//! extern crate alloc_cortex_m;
|
||||
//! #[macro_use]
|
||||
//! extern crate collections;
|
||||
//! extern crate alloc;
|
||||
//! extern crate cortex_m;
|
||||
//! extern crate cortex_m_rt;
|
||||
//! extern crate cortex_m_semihosting;
|
||||
@@ -44,25 +44,21 @@
|
||||
//!
|
||||
//! use cortex_m::asm;
|
||||
//! use cortex_m_semihosting::hio;
|
||||
//! use alloc_cortex_m::CortexMHeap;
|
||||
//!
|
||||
//! #[global_allocator]
|
||||
//! static ALLOCATOR: CortexMHeap = CortexMHeap::empty();
|
||||
//!
|
||||
//! extern "C" {
|
||||
//! static mut _sheap: u32;
|
||||
//! static mut _eheap: u32;
|
||||
//! }
|
||||
//!
|
||||
//! fn main() {
|
||||
//! // Initialize the allocator
|
||||
//! unsafe {
|
||||
//! extern "C" {
|
||||
//! // Start of the heap
|
||||
//! static mut _sheap: usize;
|
||||
//! }
|
||||
//!
|
||||
//! // Size of the heap in words (1 word = 4 bytes)
|
||||
//! // NOTE The bigger the heap the greater the chance to run into a stack
|
||||
//! // overflow (collision between the stack and the heap)
|
||||
//! const SIZE: isize = 256;
|
||||
//!
|
||||
//! // End of the heap
|
||||
//! let _eheap = (&mut _sheap as *mut _).offset(SIZE);
|
||||
//!
|
||||
//! alloc_cortex_m::init(&mut _sheap, _eheap);
|
||||
//! }
|
||||
//! let start = unsafe { &mut _sheap as *mut u32 as usize };
|
||||
//! let end = unsafe { &mut _eheap as *mut u32 as usize };
|
||||
//! unsafe { ALLOCATOR.init(start, end - start) }
|
||||
//!
|
||||
//! // Growable array allocated on the heap
|
||||
//! let xs = vec![0, 1, 2];
|
||||
|
||||
Reference in New Issue
Block a user