Editing MMC Card Reader Development

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 76: Line 76:
 
*stdio.h has no equivalent '''FRESULT'''
 
*stdio.h has no equivalent '''FRESULT'''
 
|-
 
|-
| Read  
+
| Read || 7.73 || 30 ||
|  
 
  size_t
 
[http://www.cplusplus.com/reference/clibrary/cstdio/fread/ fread] (
 
  void * ptr,
 
  size_t size,
 
  size_t count,
 
  FILE * stream
 
);
 
|
 
  FRESULT
 
[http://elm-chan.org/fsw/ff/en/read.html f_read] (
 
  FIL* FileObject,    /* Pointer to the file object structure */
 
  void* Buffer,      /* Pointer to the buffer to store read data */
 
  UINT ByteToRead,    /* Number of bytes to read */
 
  UINT* ByteRead      /* Pointer to the variable to return number of bytes read */
 
);
 
|
 
*'''size_t''' matches '''ByteRead'''
 
*'''ptr''' matches '''Buffer'''
 
*'''count''' matches '''ByteToRead'''
 
*'''stream''' matches '''FileObject'''
 
*stdio.h has no equivalent '''FRESULT'''
 
 
|-
 
|-
| Write
+
| Write || 7.85 || 30 ||
|
 
  size_t
 
[http://www.cplusplus.com/reference/clibrary/cstdio/fwrite/ fwrite] (
 
  const void * ptr,
 
  size_t size,
 
  size_t count,
 
  FILE * stream
 
);
 
|  
 
  FRESULT
 
[http://elm-chan.org/fsw/ff/en/write.html f_write] (
 
  FIL* FileObject,    /* Pointer to the file object structure */
 
  const void* Buffer,  /* Pointer to the data to be written */
 
  UINT ByteToWrite,    /* Number of bytes to write */
 
  UINT* ByteWritten    /* Pointer to the variable to return number of bytes written */
 
);
 
|
 
*'''size_t''' matches '''ByteWritten'''
 
*'''ptr''' matches '''Buffer'''
 
*'''count''' matches '''ByteToWrite'''
 
*'''stream''' matches '''FileObject'''
 
*stdio.h has no equivalent '''FRESULT'''
 
 
|-  
 
|-  
| Close
+
| Close || 4.62 || 40 ||
|
+
|-
  int
+
| Seek || 4.81 || 40 ||
[http://www.cplusplus.com/reference/clibrary/cstdio/fclose/ fclose] (
 
  FILE * stream
 
);
 
|
 
  FRESULT
 
[http://elm-chan.org/fsw/ff/en/close.html f_close] (
 
  FIL* FileObject    /* Pointer to the file object structure */
 
);
 
|
 
*'''int''' matches '''FRESULT'''
 
*'''stream''' matches '''FileObject'''
 
 
|-
 
|-
 
|}
 
|}

Please note that all contributions to OpenCircuits may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OpenCircuits:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)