diff options
author | Amaury Pouly <pamaury@rockbox.org> | 2011-12-15 17:06:55 +0000 |
---|---|---|
committer | Amaury Pouly <pamaury@rockbox.org> | 2011-12-15 17:06:55 +0000 |
commit | 489296afa3c0ad3a7b557355545322cc05b8b494 (patch) | |
tree | 35832248b8aac1b131672b4b8ee42faa004ce740 /firmware/target/arm/imx233/ssp-imx233.h | |
parent | ddd594b03ea7209f1b17b1ce918e585c48bd1df8 (diff) |
imx233/fuze+: add support for sd card, enable FAT16 support because it's common on sd cards
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31268 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx233/ssp-imx233.h')
-rw-r--r-- | firmware/target/arm/imx233/ssp-imx233.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/target/arm/imx233/ssp-imx233.h b/firmware/target/arm/imx233/ssp-imx233.h index 42aa2550a6..a463c04a20 100644 --- a/firmware/target/arm/imx233/ssp-imx233.h +++ b/firmware/target/arm/imx233/ssp-imx233.h @@ -168,8 +168,10 @@ void imx233_ssp_setup_ssp1_sd_mmc_pins(bool enable_pullups, unsigned bus_width, void imx233_ssp_setup_ssp2_sd_mmc_pins(bool enable_pullups, unsigned bus_width, unsigned drive_strength); /* after callback is fired, imx233_ssp_sdmmc_setup_detect needs to be called - * to enable detection again */ -void imx233_ssp_sdmmc_setup_detect(int ssp, bool enable, ssp_detect_cb_t fn); + * to enable detection again. If first_time is true, the callback will + * be called if the sd card is inserted when the function is called, otherwise + * it will be called on the next insertion change. */ +void imx233_ssp_sdmmc_setup_detect(int ssp, bool enable, ssp_detect_cb_t fn, bool first_time); bool imx233_ssp_sdmmc_detect(int ssp); /* SD/MMC requires that the card be provided the clock during an init sequence of * at least 1msec (or 74 clocks). Does NOT touch the clock so it has to be correct. */ |