diff options
author | Tectu <joel@unormal.org> | 2012-06-07 23:28:31 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-07 23:28:31 +0200 |
commit | 6c32f7aa6b9fc98ee85f07a2de45b28648035d0a (patch) | |
tree | 25828e99f6a357d18a47bcac7585166e1b95e252 /board.c | |
parent | 296fedd09148e19ebec2df137145ca25a16b6a1b (diff) | |
download | uGFX-6c32f7aa6b9fc98ee85f07a2de45b28648035d0a.tar.gz uGFX-6c32f7aa6b9fc98ee85f07a2de45b28648035d0a.tar.bz2 uGFX-6c32f7aa6b9fc98ee85f07a2de45b28648035d0a.zip |
cleanups
Diffstat (limited to 'board.c')
-rw-r--r-- | board.c | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/board.c b/board.c deleted file mode 100644 index 77ca6e90..00000000 --- a/board.c +++ /dev/null @@ -1,50 +0,0 @@ -#include "ch.h" -#include "hal.h" - -/** -* @brief PAL setup. -* @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}, - {VAL_GPIOBODR, VAL_GPIOBCRL, VAL_GPIOBCRH}, - {VAL_GPIOCODR, VAL_GPIOCCRL, VAL_GPIOCCRH}, - {VAL_GPIODODR, VAL_GPIODCRL, VAL_GPIODCRH}, - {VAL_GPIOEODR, VAL_GPIOECRL, VAL_GPIOECRH}, -}; -#endif - -#if HAL_USE_MMC_SPI -/* Board-related functions related to the MMC_SPI driver.*/ -bool_t mmc_lld_is_card_inserted(MMCDriver *mmcp) { - (void)mmcp; - return !palReadPad(GPIOA, GPIOA_MMCCP); -} - -bool_t mmc_lld_is_write_protected(MMCDriver *mmcp) { - (void)mmcp; - return 0; -} -#endif - -/* - * Early initialization code. - * This initialization must be performed just after stack setup and before - * any other initialization. - */ -void __early_init(void) { - stm32_clock_init(); -} - -void boardInit(void) { - palClearPad(GPIOD, GPIOD_LED1); - palClearPad(GPIOD, GPIOD_LED2); - palClearPad(GPIOD, GPIOD_LED3); - palClearPad(GPIOD, GPIOD_LED4); - - palSetPad(GPIOC, GPIOC_USBPWR); -} - |