We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b968503 + 4fecabe commit 12521c9Copy full SHA for 12521c9
cortex-m-rt/src/lib.rs
@@ -219,7 +219,7 @@
219
//!
220
//! Allocating the call stack on a different RAM region.
221
222
-//! ```
+//! ```,ignore
223
//! MEMORY
224
//! {
225
//! /* call stack will go here */
@@ -247,7 +247,7 @@
247
248
//! Locate the `.text` section 1024 bytes after the start of the FLASH region.
249
250
251
//! _stext = ORIGIN(FLASH) + 0x400;
252
//! ```
253
@@ -260,7 +260,7 @@
260
261
//! #### Example
262
263
264
//! extern crate some_allocator;
265
266
//! // Size of the heap in bytes
@@ -295,6 +295,7 @@ extern crate cortex_m;
295
extern crate compiler_builtins;
296
extern crate r0;
297
298
+#[cfg(not(test))]
299
mod lang_items;
300
301
#[cfg(target_arch = "arm")]
0 commit comments