aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/boards/ST_STM32F746G_DISCOVERY/board.c
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-10-06 08:55:51 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-10-06 08:55:51 +0000
commitfc2684e554cb523abed4f5e5485162f603ea88c4 (patch)
tree78f6dee55eff4ce124a1f00c08eb9af5972d4449 /os/hal/boards/ST_STM32F746G_DISCOVERY/board.c
parent05e3b285288d1e87b73c8020b63d264ff14be805 (diff)
downloadChibiOS-fc2684e554cb523abed4f5e5485162f603ea88c4.tar.gz
ChibiOS-fc2684e554cb523abed4f5e5485162f603ea88c4.tar.bz2
ChibiOS-fc2684e554cb523abed4f5e5485162f603ea88c4.zip
Fixed SD card detection on STM32F7-Discovery.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8344 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/boards/ST_STM32F746G_DISCOVERY/board.c')
-rw-r--r--os/hal/boards/ST_STM32F746G_DISCOVERY/board.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/os/hal/boards/ST_STM32F746G_DISCOVERY/board.c b/os/hal/boards/ST_STM32F746G_DISCOVERY/board.c
index 02873cd62..2c595e5e8 100644
--- a/os/hal/boards/ST_STM32F746G_DISCOVERY/board.c
+++ b/os/hal/boards/ST_STM32F746G_DISCOVERY/board.c
@@ -85,20 +85,20 @@ void __early_init(void) {
* @brief SDC card detection.
*/
bool sdc_lld_is_card_inserted(SDCDriver *sdcp) {
-
- (void)sdcp;
- /* TODO: Fill the implementation.*/
- return true;
+
+ (void)sdcp;
+
+ return !palReadPad(GPIOC, GPIOC_SD_DETECT);
}
/**
* @brief SDC card write protection detection.
*/
bool sdc_lld_is_write_protected(SDCDriver *sdcp) {
-
- (void)sdcp;
-
- return !palReadPad(GPIOC, GPIOC_SD_DETECT);
+
+ (void)sdcp;
+ /* TODO: Fill the implementation.*/
+ return false;
}
#endif /* HAL_USE_SDC */