Fix jtag_dbg_wait to not mangle WAIT_FLAG

This commit is contained in:
Berkus Decker 2019-02-25 10:36:04 +02:00
parent bd68e95e27
commit 94324f3f8c
1 changed files with 1 additions and 1 deletions

View File

@ -9,12 +9,12 @@ pub use mmu::*;
use cortex_a::{asm, barrier, regs::*};
#[no_mangle]
static mut WAIT_FLAG: bool = true;
/// Wait for debugger to attach.
/// Then in gdb issue `> set var *(&WAIT_FLAG) = 0`
/// from inside this function's frame to contiue running.
#[inline]
pub fn jtag_dbg_wait() {
use core::ptr::{read_volatile, write_volatile};