From 5a951d58770d9121090087a173973c07fb93bbe7 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 19 Dec 2010 12:55:45 +0000 Subject: Added a check on PAL enable. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2510 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- boards/EA_LPCXPRESSO_BB_1114/board.c | 2 ++ boards/EA_LPCXPRESSO_BB_1343/board.c | 2 ++ boards/OLIMEX_LPC_P2148/board.c | 2 ++ boards/OLIMEX_MSP430_P1611/board.c | 2 ++ boards/OLIMEX_SAM7_EX256/board.c | 2 ++ boards/OLIMEX_SAM7_P256/board.c | 2 ++ boards/OLIMEX_STM32_H103/board.c | 2 ++ boards/ST_STM3210C_EVAL/board.c | 2 ++ boards/ST_STM32VL_DISCOVERY/board.c | 2 ++ 9 files changed, 18 insertions(+) diff --git a/boards/EA_LPCXPRESSO_BB_1114/board.c b/boards/EA_LPCXPRESSO_BB_1114/board.c index 68e8efc05..cb9116eed 100644 --- a/boards/EA_LPCXPRESSO_BB_1114/board.c +++ b/boards/EA_LPCXPRESSO_BB_1114/board.c @@ -25,12 +25,14 @@ * @details Digital I/O ports static configuration as defined in @p board.h. * This variable is used by the HAL when initializing the PAL driver. */ +#if HAL_USE_PAL || defined(__DOXYGEN__) const PALConfig pal_default_config = { {VAL_GPIO0DATA, VAL_GPIO0DIR}, {VAL_GPIO1DATA, VAL_GPIO1DIR}, {VAL_GPIO2DATA, VAL_GPIO2DIR}, {VAL_GPIO3DATA, VAL_GPIO3DIR}, }; +#endif /* * Early initialization code. diff --git a/boards/EA_LPCXPRESSO_BB_1343/board.c b/boards/EA_LPCXPRESSO_BB_1343/board.c index a7844e76a..ea5c29f34 100644 --- a/boards/EA_LPCXPRESSO_BB_1343/board.c +++ b/boards/EA_LPCXPRESSO_BB_1343/board.c @@ -25,12 +25,14 @@ * @details Digital I/O ports static configuration as defined in @p board.h. * This variable is used by the HAL when initializing the PAL driver. */ +#if HAL_USE_PAL || defined(__DOXYGEN__) const PALConfig pal_default_config = { {VAL_GPIO0DATA, VAL_GPIO0DIR}, {VAL_GPIO1DATA, VAL_GPIO1DIR}, {VAL_GPIO2DATA, VAL_GPIO2DIR}, {VAL_GPIO3DATA, VAL_GPIO3DIR}, }; +#endif /* * Early initialization code. diff --git a/boards/OLIMEX_LPC_P2148/board.c b/boards/OLIMEX_LPC_P2148/board.c index 45c492cbf..4b9a2205d 100644 --- a/boards/OLIMEX_LPC_P2148/board.c +++ b/boards/OLIMEX_LPC_P2148/board.c @@ -27,6 +27,7 @@ * @details Digital I/O ports static configuration as defined in @p board.h. * This variable is used by the HAL when initializing the PAL driver. */ +#if HAL_USE_PAL || defined(__DOXYGEN__) const PALConfig pal_default_config = { VAL_PINSEL0, @@ -35,6 +36,7 @@ const PALConfig pal_default_config = {VAL_FIO0PIN, VAL_FIO0DIR}, {VAL_FIO1PIN, VAL_FIO1DIR} }; +#endif /* * Timer 0 IRQ handling here. diff --git a/boards/OLIMEX_MSP430_P1611/board.c b/boards/OLIMEX_MSP430_P1611/board.c index 558110376..405d0deb7 100644 --- a/boards/OLIMEX_MSP430_P1611/board.c +++ b/boards/OLIMEX_MSP430_P1611/board.c @@ -27,6 +27,7 @@ * @details Digital I/O ports static configuration as defined in @p board.h. * This variable is used by the HAL when initializing the PAL driver. */ +#if HAL_USE_PAL || defined(__DOXYGEN__) const PALConfig pal_default_config = { #if defined(__MSP430_HAS_PORT1__) || defined(__MSP430_HAS_PORT1_R__) @@ -48,6 +49,7 @@ const PALConfig pal_default_config = {VAL_P6OUT, VAL_P6DIR}, #endif }; +#endif CH_IRQ_HANDLER(TIMERA0_VECTOR) { diff --git a/boards/OLIMEX_SAM7_EX256/board.c b/boards/OLIMEX_SAM7_EX256/board.c index e13a05420..5445739ed 100644 --- a/boards/OLIMEX_SAM7_EX256/board.c +++ b/boards/OLIMEX_SAM7_EX256/board.c @@ -25,6 +25,7 @@ * @details Digital I/O ports static configuration as defined in @p board.h. * This variable is used by the HAL when initializing the PAL driver. */ +#if HAL_USE_PAL || defined(__DOXYGEN__) const PALConfig pal_default_config = { {VAL_PIOA_ODSR, VAL_PIOA_OSR, VAL_PIOA_PUSR}, @@ -33,6 +34,7 @@ const PALConfig pal_default_config = {VAL_PIOB_ODSR, VAL_PIOB_OSR, VAL_PIOB_PUSR} #endif }; +#endif /* * SYS IRQ handling here. diff --git a/boards/OLIMEX_SAM7_P256/board.c b/boards/OLIMEX_SAM7_P256/board.c index cd9a43873..2e11abafb 100644 --- a/boards/OLIMEX_SAM7_P256/board.c +++ b/boards/OLIMEX_SAM7_P256/board.c @@ -25,6 +25,7 @@ * @details Digital I/O ports static configuration as defined in @p board.h. * This variable is used by the HAL when initializing the PAL driver. */ +#if HAL_USE_PAL || defined(__DOXYGEN__) const PALConfig pal_default_config = { {VAL_PIOA_ODSR, VAL_PIOA_OSR, VAL_PIOA_PUSR}, @@ -33,6 +34,7 @@ const PALConfig pal_default_config = {VAL_PIOB_ODSR, VAL_PIOB_OSR, VAL_PIOB_PUSR} #endif }; +#endif /* * SYS IRQ handling here. diff --git a/boards/OLIMEX_STM32_H103/board.c b/boards/OLIMEX_STM32_H103/board.c index e380b8b9a..05faa0944 100644 --- a/boards/OLIMEX_STM32_H103/board.c +++ b/boards/OLIMEX_STM32_H103/board.c @@ -25,6 +25,7 @@ * @details Digital I/O ports static configuration as defined in @p board.h. * This variable is used by the HAL when initializing the PAL driver. */ +#if HAL_USE_PAL || defined(__DOXYGEN__) const PALConfig pal_default_config = { {VAL_GPIOAODR, VAL_GPIOACRL, VAL_GPIOACRH}, @@ -33,6 +34,7 @@ const PALConfig pal_default_config = {VAL_GPIODODR, VAL_GPIODCRL, VAL_GPIODCRH}, {VAL_GPIOEODR, VAL_GPIOECRL, VAL_GPIOECRH}, }; +#endif /* * Early initialization code. diff --git a/boards/ST_STM3210C_EVAL/board.c b/boards/ST_STM3210C_EVAL/board.c index 4b907f5ed..ac1564257 100644 --- a/boards/ST_STM3210C_EVAL/board.c +++ b/boards/ST_STM3210C_EVAL/board.c @@ -25,6 +25,7 @@ * @details Digital I/O ports static configuration as defined in @p board.h. * This variable is used by the HAL when initializing the PAL driver. */ +#if HAL_USE_PAL || defined(__DOXYGEN__) const PALConfig pal_default_config = { {VAL_GPIOAODR, VAL_GPIOACRL, VAL_GPIOACRH}, @@ -33,6 +34,7 @@ const PALConfig pal_default_config = {VAL_GPIODODR, VAL_GPIODCRL, VAL_GPIODCRH}, {VAL_GPIOEODR, VAL_GPIOECRL, VAL_GPIOECRH}, }; +#endif /* * Early initialization code. diff --git a/boards/ST_STM32VL_DISCOVERY/board.c b/boards/ST_STM32VL_DISCOVERY/board.c index e380b8b9a..05faa0944 100644 --- a/boards/ST_STM32VL_DISCOVERY/board.c +++ b/boards/ST_STM32VL_DISCOVERY/board.c @@ -25,6 +25,7 @@ * @details Digital I/O ports static configuration as defined in @p board.h. * This variable is used by the HAL when initializing the PAL driver. */ +#if HAL_USE_PAL || defined(__DOXYGEN__) const PALConfig pal_default_config = { {VAL_GPIOAODR, VAL_GPIOACRL, VAL_GPIOACRH}, @@ -33,6 +34,7 @@ const PALConfig pal_default_config = {VAL_GPIODODR, VAL_GPIODCRL, VAL_GPIODCRH}, {VAL_GPIOEODR, VAL_GPIOECRL, VAL_GPIOECRH}, }; +#endif /* * Early initialization code. -- cgit v1.2.3