Mikroelektronika MIKROE-350 Fiche De Données

Page de 526
Mmc_Fat_Reset
264
MIKROELEKTRONIKA
- SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroBasic PRO for AVR
CHAPTER 6
Prototype
sub procedure Mmc_Fat_Reset(dim byref size as longword)
Returns
Nothing.
Description
Opens currently assigned file for reading.
Parameters:
size:
buffer to store file size to. After file has been open for reading its size is 
returned through this parameter. 
Requires
MMC/SD card and MMC library must be initialized for file operations. See
Mmc_Fat_Init.
The file must be previously assigned. See Mmc_Fat_Assign.
Example
dim size as longword
...
main:
...
Mmc_Fat_Reset(size)
...
end.