Hydra Firmware Version: 4.2.3.1 SD - Card

Hi Community.

I am having problems using the SD Module on the Hydra board. This is from the Log when the application starts up.:

“Microsoft.SPOT.Debugger.CorDebug.dll” (Verwaltet): “C:\Program Files\Microsoft .NET Micro Framework\v4.2\Assemblies\le\System.Http.dll” geladen, Symbole geladen.
#### Exception System.Exception - CLR_E_DRIVER_NOT_REGISTERED (2) ####
#### Message:
#### Microsoft.SPOT.Hardware.NativeEventDispatcher::.ctor [IP: 0000] ####
#### GHI.Premium.System.InternalEvent::.cctor [IP: 0014] ####
Eine nicht behandelte Ausnahme des Typs “System.Exception” ist in Microsoft.SPOT.Hardware.dll aufgetreten.

The module setup:


        private void InitializeModules()
        {   
            // Initialize GTM.Modules and event handlers here.		
            usbClientSP = new GTM.GHIElectronics.UsbClientSP(2);
		
            music = new GTM.GHIElectronics.Music(3);
		
            sdCard = new GTM.GHIElectronics.SDCard(8);
		
            display_T35 = new GTM.GHIElectronics.Display_T35(10, 11, 12, 13);

        }

without the SD card all is fine… any pointers where to go from here?

thanks.

you have added the wrong references. the GHI.oshw libraries, instead of the GHI.premium libraries, should be used.

the premium libraries are for the EMX and g120 devices.

Thanks Mike, thats a bit embaresing… but the right fw works like a charm…