From 5bb02975ac5f541245af9b4f6c0be4ffaa2d8463 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sun, 23 Jan 2022 12:59:27 -0700 Subject: Draw Exception info to screen --- src/sys/schedule.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/sys/schedule.c') diff --git a/src/sys/schedule.c b/src/sys/schedule.c index ea5b465..ebf60bc 100644 --- a/src/sys/schedule.c +++ b/src/sys/schedule.c @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -48,6 +49,25 @@ struct RStack get_stack(void) return r; } +void draw_stacks(void) +{ + unsigned long ioff = 0; + unsigned long yoff = 320; +#define STACK_DRAW_WIDTH 32 +#define STACK_DRAW_SIZE 3 + for(int i = 0; i < MAX_THREADS; i++) { + if(stacks_table[i]) + draw_cbox(ioff, yoff, STACK_DRAW_SIZE, STACK_DRAW_SIZE, 0xFFFFFF); + else + draw_cbox(ioff, yoff, STACK_DRAW_SIZE, STACK_DRAW_SIZE, 0x000000); + ioff += STACK_DRAW_SIZE; + if(ioff % STACK_DRAW_WIDTH == 0) { + yoff += STACK_DRAW_SIZE; + ioff = 0; + } + } +} + void add_thread(void* pc, void* arg, unsigned char priority) { //void* sp = get_stack(); -- cgit v1.2.1