File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 219219//!
220220//! Allocating the call stack on a different RAM region.
221221//!
222- //! ```
222+ //! ```,ignore
223223//! MEMORY
224224//! {
225225//! /* call stack will go here */
247247//!
248248//! Locate the `.text` section 1024 bytes after the start of the FLASH region.
249249//!
250- //! ```
250+ //! ```,ignore
251251//! _stext = ORIGIN(FLASH) + 0x400;
252252//! ```
253253//!
260260//!
261261//! #### Example
262262//!
263- //! ```
263+ //! ```,ignore
264264//! extern crate some_allocator;
265265//!
266266//! // Size of the heap in bytes
@@ -295,6 +295,7 @@ extern crate cortex_m;
295295extern crate compiler_builtins;
296296extern crate r0;
297297
298+ #[ cfg( not( test) ) ]
298299mod lang_items;
299300
300301#[ cfg( target_arch = "arm" ) ]
You can’t perform that action at this time.
0 commit comments