Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.

cSharper

Member Since 21 Jul 2015
Offline Last Active Oct 23 2015 01:16 PM
-----

Posts I've Made

In Topic: Noob System.NotSupportedException

26 August 2015 - 01:50 PM

I think you still may not have the correct firmware. Mine is 4.3.2.1 like the link I posted above.

HalSystemInfo.halVersion:               4.3.1.0
HalSystemInfo.halVendorInfo:            Netduino Plus 2 (v4.3.2.1) by Secret Labs LLC
HalSystemInfo.oemCode:                  34
HalSystemInfo.modelCode:                177
HalSystemInfo.skuCode:                  4102
HalSystemInfo.moduleSerialNumber:       00000000000000000000000000000000
HalSystemInfo.systemSerialNumber:       0000000000000000
ClrInfo.clrVersion:                     4.3.1.0
ClrInfo.clrVendorInfo:                  Netduino Plus 2 (v4.3.2.1) by Secret Labs LLC
ClrInfo.targetFrameworkVersion:         4.3.1.0
SolutionReleaseInfo.solutionVersion:    4.3.2.1
SolutionReleaseInfo.solutionVendorInfo: Netduino Plus 2 (v4.3.2.1) by Secret Labs LLC
SoftwareVersion.BuildDate:              May  7 2015
SoftwareVersion.CompilerVersion:        410894
FloatingPoint:                          True
SourceLevelDebugging:                   True
ThreadCreateEx:                         True
LCD.Width:                              0
LCD.Height:                             0
LCD.BitsPerPixel:                       0
AppDomains:                             True
ExceptionFilters:                       True
IncrementalDeployment:                  True
SoftReboot:                             False
Profiling:                              False
ProfilingAllocations:                   False
ProfilingCalls:                         False
IsUnknown:                              False

In Topic: Problem Detect the presence of SD in Netduino Plus

18 August 2015 - 04:14 PM

Hi all,

 

I know this thread is old, but is there an updated way to perform this exact task?

Right now when I run the sample program given, I get this error:

Inserted
A first chance exception of type 'System.IO.IOException' occurred in Microsoft.SPOT.IO.dll
An unhandled exception of type 'System.IO.IOException' occurred in Microsoft.SPOT.IO.dll


 Uncaught exception 
Ejected
Inserted
Inserted

In Topic: Why do I have to reboot my device to change the IP address?

17 August 2015 - 12:41 PM

Chris,

 

Thank you for your reply, and I am looking forward to those updates in the near future!


In Topic: Noob System.NotSupportedException

31 July 2015 - 06:54 PM

I had this exact same issue, and I just uninstalled the SDK's, & .NetMF and followed his instructions here to reinstall-> http://forums.netdui...-v432-update-1/

 

I think I originally had the wrong firmware installed, because I just installed whatever was posted on the main website under downloads


In Topic: Sd Card read issues

31 July 2015 - 06:49 PM

This is how I read from my SD card:
 

        public string GetFileFromSD(string FilePath) {
            var line = "";
            using (FileStream fs2 = new FileStream(FilePath, FileMode.Open, FileAccess.Read, FileShare.None)) {
                using (StreamReader sr = new StreamReader(fs2)) {

                    Debug.Print(line);
                    line = sr.ReadToEnd();
                }
            }
            return line;
        }

home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.