diff options
Diffstat (limited to 'os/hal/boards/ST_STM32F746G_DISCOVERY/board.c')
-rw-r--r-- | os/hal/boards/ST_STM32F746G_DISCOVERY/board.c | 16 |
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 */
|