summaryrefslogtreecommitdiff
path: root/nuttx/arch/pjrc-8051/src/up_irq.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/pjrc-8051/src/up_irq.c')
-rw-r--r--nuttx/arch/pjrc-8051/src/up_irq.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/arch/pjrc-8051/src/up_irq.c b/nuttx/arch/pjrc-8051/src/up_irq.c
index 772623167..e9f2c2a13 100644
--- a/nuttx/arch/pjrc-8051/src/up_irq.c
+++ b/nuttx/arch/pjrc-8051/src/up_irq.c
@@ -69,11 +69,15 @@
void up_irqinitialize(void)
{
+#if 1 /* remove me */
+ IE = 0;
+#else
/* Enable interrupts globally, but disable all interrupt
* sources.
*/
IE = 0x80;
+#endif
}
/************************************************************