Hello,
I have a problem with my SD card and the RINO.
My code :
if (PersistentStorage.DetectSDCard())
{
Debug.Print("[TEST] : {MicroSDTest} SD Card Detected!");
Debug.Print("[TEST] : {MicroSDTest} Mounting Persistent Storage device");
try
{
sdCard = new PersistentStorage("SD");
sdCard.MountFileSystem();
SDCardLoaded = true;
}
catch (Exception ex)
{
Debug.Print("Failed to mount SD card: " + ex.Message);
SDCardLoaded = false;
}
}
I have always the same execption.
“Une exception de première chance de type ‘System.Exception’ s’est produite dans GHIElectronics.NETMF.IO.dll
Failed to mount SD card: Exception was thrown: System.Exception
”
My SDK is 4.1.3 and the runtime version is 4.0.30319
The firmware of the RINO is :
ClrInfo.clrVersion: 4.1.2821.0
ClrInfo.clrVendorInfo: Microsoft Copyright © Microsoft Corporation. All rig
ClrInfo.targetFrameworkVersion: 4.1.2821.0
SolutionReleaseInfo.solutionVersion: 4.1.3.0
SolutionReleaseInfo.solutionVendorInfo: GHI Electronics, LLC
SoftwareVersion.BuildDate: Oct 15 2010
SoftwareVersion.CompilerVersion: 310739
Any Idea ?