aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-03-22 14:40:05 -0700
committerChristian Cunningham <cc@localhost>2022-03-22 14:40:05 -0700
commit24f8a2e4e887f50667b82798daa13bd55fb886b4 (patch)
tree2fc837eee22398253d686b292825d786384a8e7a
parent546c6e5e0121be8ebe16f166ce3cc2c6871c521d (diff)
Low preiroity handle data
-rw-r--r--src/cpu/irq.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c
index b5f3e03..4142b28 100644
--- a/src/cpu/irq.c
+++ b/src/cpu/irq.c
@@ -50,9 +50,8 @@ void c_irq_handler(void)
}
// Add task to handle the data
else {
- add_thread(handle_data, (void*)data, 1);
+ add_thread(handle_data, (void*)data, 7);
}
- return;
}
}
// Check if System Time Compare 0 Triggered the Interrupt
@@ -67,7 +66,6 @@ void c_irq_handler(void)
}
// Check if CNTV triggered the interrupt
else if (source & (1 << 3)) {
- return;
}
return;
}