From 24f8a2e4e887f50667b82798daa13bd55fb886b4 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Tue, 22 Mar 2022 14:40:05 -0700 Subject: Low preiroity handle data --- src/cpu/irq.c | 4 +--- 1 file changed, 1 insertion(+), 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; } -- cgit v1.2.1