From 986aad310abca79e1c1e6fbd52d5ccbb7663c351 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sun, 5 Jul 2015 13:20:16 +0200 Subject: [PATCH 1/3] Doxygen update --- src/gwin/gwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gwin/gwin.h b/src/gwin/gwin.h index 9b2d18b7..4a7d02bf 100644 --- a/src/gwin/gwin.h +++ b/src/gwin/gwin.h @@ -469,7 +469,7 @@ extern "C" { #if GWIN_NEED_WINDOWMANAGER || defined (__DOXYGEN__) /** - * @brief Redraw a window + * @brief Redraw a display * * @param[in] g The display to redraw. Passing NULL will redraw all displays. * @param[in] preserve Should the redraw try to preserve existing screen data for those From 6d329077bc2281a4c76c329ad0d17ecaa23abddf Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 8 Jul 2015 01:13:35 +0200 Subject: [PATCH 2/3] Fixing stack alignment issue in RAW32 scheduler --- src/gos/gos_raw32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gos/gos_raw32.c b/src/gos/gos_raw32.c index bb1b41ee..7a722d2e 100644 --- a/src/gos/gos_raw32.c +++ b/src/gos/gos_raw32.c @@ -526,7 +526,7 @@ static thread *Qpop(threadQ * q) { /* These functions are not static to prevent the compiler removing them as functions */ void get_stack_state(void) { - char c; + char* c; pframeinfo->localptr = (char *)&c; _setjmp(pframeinfo->cxt); } From e99cc3cd8b402d26bb2ed1abc1c8793f7a680d2f Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Wed, 8 Jul 2015 01:22:36 +0200 Subject: [PATCH 3/3] Fixing stack alignment issue in Arduino scheduler --- src/gos/gos_arduino.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gos/gos_arduino.c b/src/gos/gos_arduino.c index 60c35cac..4c01695a 100644 --- a/src/gos/gos_arduino.c +++ b/src/gos/gos_arduino.c @@ -327,7 +327,7 @@ static thread *Qpop(threadQ * q) { /* These functions are not static to prevent the compiler removing them as functions */ void get_stack_state(void) { - char c; + char* c; pframeinfo->localptr = (char *)&c; _setjmp(pframeinfo->cxt); }