Unverified Commit 8da4da00 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

MSP430FR5969: Run with interrupts enabled all the time

parent d4b6bef1
Loading
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -151,7 +151,6 @@ void Arch::idle_loop(void)
		asm volatile("nop");
		__bis_SR_register(GIE | LPM2_bits);
		asm volatile("nop");
		__dint();
#if defined(CONFIG_loop)
		if (run_loop) {
			loop();
@@ -169,7 +168,6 @@ void Arch::idle(void)
	asm volatile("nop");
	__bis_SR_register(GIE | LPM2_bits);
	asm volatile("nop");
	__dint();
#ifdef CONFIG_wakeup
	wakeup();
#endif