diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-09 17:00:03 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-09 17:00:03 +0000 |
commit | 7f87eee586adf22f28b1687ef92051065a0a5ee5 (patch) | |
tree | a3d199558c7671e31e9ebac4f79f8f4596e2493e /demos | |
parent | 8f8b7f2c69575736da9004c8dc45c770b0f08c48 (diff) | |
download | ChibiOS-7f87eee586adf22f28b1687ef92051065a0a5ee5.tar.gz ChibiOS-7f87eee586adf22f28b1687ef92051065a0a5ee5.tar.bz2 ChibiOS-7f87eee586adf22f28b1687ef92051065a0a5ee5.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4178 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r-- | demos/ARMCM3-STM32F103ZG-FATFS/main.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/demos/ARMCM3-STM32F103ZG-FATFS/main.c b/demos/ARMCM3-STM32F103ZG-FATFS/main.c index a2693badf..8ce90f704 100644 --- a/demos/ARMCM3-STM32F103ZG-FATFS/main.c +++ b/demos/ARMCM3-STM32F103ZG-FATFS/main.c @@ -53,33 +53,6 @@ static unsigned cnt; static EventSource inserted_event, removed_event;
/**
- * @brief Insertion monitor function.
- *
- * @param[in] sdcp pointer to the @p SDCDriver object
- *
- * @notapi
- */
-bool_t sdc_lld_is_card_inserted(SDCDriver *sdcp) {
-
- (void)sdcp;
- return !palReadPad(GPIOF, GPIOF_SD_DETECT);
-}
-
-/**
- * @brief Protection detection.
- * @note Not supported.
- *
- * @param[in] sdcp pointer to the @p SDCDriver object
- *
- * @notapi
- */
-bool_t sdc_lld_is_write_protected(SDCDriver *sdcp) {
-
- (void)sdcp;
- return FALSE;
-}
-
-/**
* @brief Insertion monitor timer callback function.
*
* @param[in] p pointer to the @p SDCDriver object
|