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 219
219
//!
220
220
//! Allocating the call stack on a different RAM region.
221
221
//!
222
- //! ```
222
+ //! ```,ignore
223
223
//! MEMORY
224
224
//! {
225
225
//! /* call stack will go here */
247
247
//!
248
248
//! Locate the `.text` section 1024 bytes after the start of the FLASH region.
249
249
//!
250
- //! ```
250
+ //! ```,ignore
251
251
//! _stext = ORIGIN(FLASH) + 0x400;
252
252
//! ```
253
253
//!
260
260
//!
261
261
//! #### Example
262
262
//!
263
- //! ```
263
+ //! ```,ignore
264
264
//! extern crate some_allocator;
265
265
//!
266
266
//! // Size of the heap in bytes
@@ -295,6 +295,7 @@ extern crate cortex_m;
295
295
extern crate compiler_builtins;
296
296
extern crate r0;
297
297
298
+ #[ cfg( not( test) ) ]
298
299
mod lang_items;
299
300
300
301
#[ cfg( target_arch = "arm" ) ]
You can’t perform that action at this time.
0 commit comments