From ace88a0b5a6b513e60105b4a35e04c55fffa3658 Mon Sep 17 00:00:00 2001 From: DiSlord Date: Mon, 29 Jun 2020 22:18:32 +0300 Subject: [PATCH] Reduce sweep thread stack size from 900 to 768 --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 7cb6e73..9e4daee 100644 --- a/main.c +++ b/main.c @@ -124,7 +124,7 @@ extern int dirty; bool completed = false; -static THD_WORKING_AREA(waThread1, 900); +static THD_WORKING_AREA(waThread1, 768); static THD_FUNCTION(Thread1, arg) { (void)arg; @@ -2784,7 +2784,7 @@ void hard_fault_handler_c(uint32_t *sp) uint32_t psr = sp[7]; int y = 0; int x = 20; -static char buf[16]; + static char buf[16]; ili9341_set_background(0x0000); ili9341_set_foreground(0xFFFF);