Changeset 501 for trunk/softs/tsar_boot/include
- Timestamp:
- Aug 29, 2013, 11:35:11 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/softs/tsar_boot/include/sdcard.h
r292 r501 23 23 24 24 /** 25 * Capacity of the SDCARD in terms of bytes26 */27 unsigned int capacity;28 29 /**30 25 * Block length of the SDCARD 31 26 */ … … 46 41 */ 47 42 int slave_id; 43 44 /* is the card high capacity ? */ 45 int sdhc; 48 46 }; 49 47 … … 105 103 */ 106 104 void sdcard_dev_lseek(struct sdcard_dev * sdcard, unsigned int pos); 107 108 /**109 * \param sdcard : Pointer to the initialized block device110 *111 * \return block device capacity112 *113 * \brief Get the block device capacity114 *115 * The block device access pointer is relocated in terms of blocks116 */117 unsigned int sdcard_dev_get_capacity(struct sdcard_dev * sdcard);118 105 119 106 /**
Note: See TracChangeset
for help on using the changeset viewer.