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.

bgreer5050

Member Since 17 Aug 2014
Offline Last Active Aug 10 2015 06:55 PM
-----

Posts I've Made

In Topic: Detect if Ethernet Cable is Connected

07 August 2015 - 05:59 PM

Hi Chris.  

 

Was the 

NetworkInterface.OperationalStatus Property ever implemented in one form or another ?

 

Thanks

Bill


In Topic: Time In Netduino 3

30 July 2015 - 12:42 PM

I guess.  I'll look for an external RTC as there is no internal RTC.  Can you recommend an external RTC for the Netduino 2 Plus ?


In Topic: Introducing Netduino 3 Wi-Fi

26 June 2015 - 12:47 PM

Is there sample code in the SDK download showing how to connect provide the network with credentials or do you have to provide the credentials using MFDeploy ? 


In Topic: Inconsistent Results When Writing to SD Card

25 June 2015 - 01:38 AM

The solution is to add 

VolumeInfo.GetVolumes()[0].FlushAll();

after flushing the stream writer.  

using (var filestream = new FileStream(@"SD\Logging\log.txt", FileMode.Append,FileAccess.Write))
{
StreamWriter streamWriter = new StreamWriter(filestream);
streamWriter.WriteLine(strLog + " - " + DateTime.Now.Ticks.ToString());

streamWriter.Flush();
}

VolumeInfo.GetVolumes()[0].FlushAll(); // Force write to sd card
}


In Topic: Netduino MAC Address Changed ??

16 April 2015 - 02:59 PM

I upgraded to 4.3 and changed the MAC address back to what it should be.  So far the problem has not re-occurred.  I am guessing that while manipulating the NIC card I was throwing an exception of some kind that caused the issue.  I'm not sure, but if I can re-create the problem I will post more details.

 

Thanks Chris


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.