aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-03-07 14:29:17 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-03-07 14:29:17 +0000
commitaa431f4c1029cb75e70368b83b8af2803a186b35 (patch)
treebe013b427c8359e8e58e51dcc5b25bca27a5491e /os/hal/ports/STM32/LLD
parentd3f5e53d03b3288568f1d591ee16f662a630f127 (diff)
downloadChibiOS-aa431f4c1029cb75e70368b83b8af2803a186b35.tar.gz
ChibiOS-aa431f4c1029cb75e70368b83b8af2803a186b35.tar.bz2
ChibiOS-aa431f4c1029cb75e70368b83b8af2803a186b35.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7731 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/LLD')
-rw-r--r--os/hal/ports/STM32/LLD/sdc_lld.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/os/hal/ports/STM32/LLD/sdc_lld.h b/os/hal/ports/STM32/LLD/sdc_lld.h
index 295ac5d24..719fe90fa 100644
--- a/os/hal/ports/STM32/LLD/sdc_lld.h
+++ b/os/hal/ports/STM32/LLD/sdc_lld.h
@@ -182,23 +182,6 @@
/*===========================================================================*/
/**
- * @brief Type of SDIO bus mode.
- */
-typedef enum {
- SDC_MODE_1BIT = 0,
- SDC_MODE_4BIT,
- SDC_MODE_8BIT
-} sdcbusmode_t;
-
-/**
- * @brief Max supported clock.
- */
-typedef enum {
- SDC_CLK_25MHz = 0,
- SDC_CLK_50MHz,
-} sdcbusclk_t;
-
-/**
* @brief Type of card flags.
*/
typedef uint32_t sdcmode_t;
@@ -227,11 +210,11 @@ typedef struct {
* afterward it can be reused for other purposes.
*/
uint8_t *scratchpad;
- /* End of the mandatory fields.*/
/**
* @brief Bus width.
*/
sdcbusmode_t bus_width;
+ /* End of the mandatory fields.*/
} SDCConfig;
/**