From a61b4a71159f7387d904254adf5a957332e8ce39 Mon Sep 17 00:00:00 2001 From: inmarket Date: Thu, 9 Oct 2014 12:29:55 +1000 Subject: [PATCH] ChibiOS 3 error message update --- src/gos/gos_chibios.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gos/gos_chibios.c b/src/gos/gos_chibios.c index 9d1a86da..faa007b5 100644 --- a/src/gos/gos_chibios.c +++ b/src/gos/gos_chibios.c @@ -23,10 +23,10 @@ #elif CH_KERNEL_MAJOR == 3 #if !CH_CFG_USE_MUTEXES - #error "GOS: CH_USE_MUTEXES must be defined in chconf.h" + #error "GOS: CH_CFG_USE_MUTEXES must be defined in chconf.h" #endif #if !CH_CFG_USE_SEMAPHORES - #error "GOS: CH_USE_SEMAPHORES must be defined in chconf.h" + #error "GOS: CH_CFG_USE_SEMAPHORES must be defined in chconf.h" #endif #endif