aboutsummaryrefslogtreecommitdiff
path: root/src/examples/_0_zero_tasks.rs
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2018-01-11 20:56:45 +0100
committerGravatar Jorge Aparicio <jorge@japaric.io> 2018-01-11 20:56:45 +0100
commit1be43fc489993e63577515063ceb8a83b14423b8 (patch)
tree128911a00f60bb7c0dc9c6ceb8c87e80e3935a99 /src/examples/_0_zero_tasks.rs
parentdd12a6a14d2bb028c8da96cb510b67de31d28be4 (diff)
downloadrtic-1be43fc489993e63577515063ceb8a83b14423b8.tar.gz
rtic-1be43fc489993e63577515063ceb8a83b14423b8.tar.zst
rtic-1be43fc489993e63577515063ceb8a83b14423b8.zip
adapt to changes in the cortex-m crate
Diffstat (limited to 'src/examples/_0_zero_tasks.rs')
-rw-r--r--src/examples/_0_zero_tasks.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/examples/_0_zero_tasks.rs b/src/examples/_0_zero_tasks.rs
index 7ea08597..90f16d48 100644
--- a/src/examples/_0_zero_tasks.rs
+++ b/src/examples/_0_zero_tasks.rs
@@ -2,6 +2,7 @@
//!
//! ```
//! #![deny(unsafe_code)]
+//! #![deny(warnings)]
//! // IMPORTANT always include this feature gate
//! #![feature(proc_macro)]
//! #![no_std]
@@ -27,8 +28,9 @@
//! // this function.
//! fn init(p: init::Peripherals) {
//! // This function has access to all the peripherals of the device
-//! p.GPIOA;
-//! p.RCC;
+//! p.core.SYST;
+//! p.device.GPIOA;
+//! p.device.RCC;
//! // ..
//! }
//!