From 5427d3efe5f5b677ff69ce71b5e65df94b3c08a4 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sun, 5 Oct 2014 15:03:12 +0200 Subject: Fixing inclusion problem --- src/gdisp/fonts/fonts.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/gdisp/fonts/fonts.h b/src/gdisp/fonts/fonts.h index 253d0e2d..bfb60b1c 100644 --- a/src/gdisp/fonts/fonts.h +++ b/src/gdisp/fonts/fonts.h @@ -1,5 +1,4 @@ - -#include +#include "gfx.h" #if defined(GDISP_INCLUDE_FONT_DEJAVUSANS10) && GDISP_INCLUDE_FONT_DEJAVUSANS10 #define GDISP_FONT_FOUND -- cgit v1.2.3 From 63fd8ab89b9c4cdddcfd91aacbf12871aeff556e Mon Sep 17 00:00:00 2001 From: inmarket Date: Mon, 6 Oct 2014 15:50:19 +1000 Subject: Update support for ChibiOS v3 to the current repository. Update Make system to match. Add ability to make to a library rather than a program Stop ignoring objcode invalid format errors Multiple make tidy ups --- src/gos/gos_chibios.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/gos/gos_chibios.h b/src/gos/gos_chibios.h index a07c72ab..a3aba712 100644 --- a/src/gos/gos_chibios.h +++ b/src/gos/gos_chibios.h @@ -28,6 +28,10 @@ * are already defined by ChibiOS */ +#if CH_KERNEL_MAJOR == 3 + typedef char bool_t; +#endif + typedef systime_t delaytime_t; typedef systime_t systemticks_t; typedef cnt_t semcount_t; -- cgit v1.2.3