aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-03-18 13:57:36 -0700
committerChristian Cunningham <cc@localhost>2022-03-18 13:57:36 -0700
commit3068d3d536ef4b1887f67f14ef853ef967504730 (patch)
treeb041fe3404e46d50cfe9b65864f03b4113538c27
parent784ca276c9e701629652a8d3ee194d41ecc06fdf (diff)
Remove Debug call
-rw-r--r--src/cpu/irq.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c
index 694742a..6a5b43f 100644
--- a/src/cpu/irq.c
+++ b/src/cpu/irq.c
@@ -33,7 +33,6 @@ void c_irq_handler(void)
// Handle the recieved data
// Ctrl+T to toggle timer
if(data == 0x14) {
- uart_scheduler();
unsigned long timer_status;
asm volatile("mrc p15, 0, %0, c14, c3, 1" : "=r"(timer_status));
if(timer_status == 0) {