aboutsummaryrefslogtreecommitdiffstats
path: root/boards/ST_STM32F4_DISCOVERY/board.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-07-22 08:23:31 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-07-22 08:23:31 +0000
commitd2aacb2d69cface3ba239d160c99b1fb172574c9 (patch)
treee45ba8819e3cebbe3b7d9f3c92f6c854db16e5e6 /boards/ST_STM32F4_DISCOVERY/board.c
parentecfab096a90b19280078d84c53c13099672303b2 (diff)
downloadChibiOS-d2aacb2d69cface3ba239d160c99b1fb172574c9.tar.gz
ChibiOS-d2aacb2d69cface3ba239d160c99b1fb172574c9.tar.bz2
ChibiOS-d2aacb2d69cface3ba239d160c99b1fb172574c9.zip
Changed after-reset status for board LEDs.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4475 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'boards/ST_STM32F4_DISCOVERY/board.c')
-rw-r--r--boards/ST_STM32F4_DISCOVERY/board.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/boards/ST_STM32F4_DISCOVERY/board.c b/boards/ST_STM32F4_DISCOVERY/board.c
index df35e5013..b8f1272f9 100644
--- a/boards/ST_STM32F4_DISCOVERY/board.c
+++ b/boards/ST_STM32F4_DISCOVERY/board.c
@@ -63,21 +63,21 @@ void __early_init(void) {
#if HAL_USE_SDC || defined(__DOXYGEN__)
/**
* @brief SDC card detection.
- * @todo Fill the implementation.
*/
bool_t sdc_lld_is_card_inserted(SDCDriver *sdcp) {
(void)sdcp;
+ /* TODO: Fill the implementation.*/
return TRUE;
}
/**
* @brief SDC card write protection detection.
- * @todo Fill the implementation.
*/
bool_t sdc_lld_is_write_protected(SDCDriver *sdcp) {
(void)sdcp;
+ /* TODO: Fill the implementation.*/
return FALSE;
}
#endif /* HAL_USE_SDC */
@@ -85,21 +85,21 @@ bool_t sdc_lld_is_write_protected(SDCDriver *sdcp) {
#if HAL_USE_MMC_SPI || defined(__DOXYGEN__)
/**
* @brief MMC_SPI card detection.
- * @todo Fill the implementation.
*/
bool_t mmc_lld_is_card_inserted(MMCDriver *mmcp) {
(void)mmcp;
+ /* TODO: Fill the implementation.*/
return TRUE;
}
/**
* @brief MMC_SPI card write protection detection.
- * @todo Fill the implementation.
*/
bool_t mmc_lld_is_write_protected(MMCDriver *mmcp) {
(void)mmcp;
+ /* TODO: Fill the implementation.*/
return FALSE;
}
#endif