Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SDFileSystem by
Revision 3:7cf3d1835ef5, committed 2014-07-30
- Comitter:
- neilt6
- Date:
- Wed Jul 30 17:45:02 2014 +0000
- Parent:
- 2:eec1db773e7d
- Child:
- 4:49b29888eca7
- Commit message:
- Changed the order of the constructor arguments to match the official SDFileSystem library
Changed in this revision
| SDFileSystem.cpp | Show annotated file Show diff for this revision Revisions of this file |
| SDFileSystem.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/SDFileSystem.cpp Wed Jul 30 17:40:10 2014 +0000
+++ b/SDFileSystem.cpp Wed Jul 30 17:45:02 2014 +0000
@@ -19,7 +19,7 @@
#include "CRC7.h"
#include "CRC16.h"
-SDFileSystem::SDFileSystem(PinName mosi, PinName miso, PinName sclk, PinName cs, PinName cd, const char* name, SwitchType cdtype, int hz) : FATFileSystem(name), m_SPI(mosi, miso, sclk), m_CS(cs, 1), m_CD(cd), m_CD_ASSERT((int)cdtype)
+SDFileSystem::SDFileSystem(PinName mosi, PinName miso, PinName sclk, PinName cs, const char* name, PinName cd, SwitchType cdtype, int hz) : FATFileSystem(name), m_SPI(mosi, miso, sclk), m_CS(cs, 1), m_CD(cd), m_CD_ASSERT((int)cdtype)
{
//Initialize the member variables
m_SpiFreq = hz;
--- a/SDFileSystem.h Wed Jul 30 17:40:10 2014 +0000
+++ b/SDFileSystem.h Wed Jul 30 17:45:02 2014 +0000
@@ -87,12 +87,12 @@
* @param miso The SPI data in pin.
* @param sclk The SPI clock pin.
* @param cs The SPI chip select pin.
+ * @param name The name used to access the virtual filesystem.
* @param cd The card detect pin.
- * @param name The name used to access the virtual filesystem.
* @param cdtype The type of card detect switch (defaults to SWITCH_NO).
* @param hz The SPI bus frequency (defaults to 1MHz).
*/
- SDFileSystem(PinName mosi, PinName miso, PinName sclk, PinName cs, PinName cd, const char* name, SwitchType cdtype = SWITCH_NO, int hz = 1000000);
+ SDFileSystem(PinName mosi, PinName miso, PinName sclk, PinName cs, const char* name, PinName cd, SwitchType cdtype = SWITCH_NO, int hz = 1000000);
/** Get the detected SD/MMC card type
*
