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.

Ellen

Member Since 14 Jun 2012
Offline Last Active Feb 02 2013 01:49 PM
-----

Posts I've Made

In Topic: General rules for CLR / firmware compatibility?

30 November 2012 - 02:41 PM

The Allocation Error is from your SDcard. When you read from or write to the card mostly the first time after power up.

In Topic: Introducing Netduino Plus -- Notes

16 November 2012 - 03:19 PM

With the Netduino Plus V2 is one problem solved, more memory. One to go the serial invert Rx.Tx. We want to beat the Arduino in every way. We are looking forward when the Netduino V2 is available in the Netherlands. Ellen.

In Topic: Netduino Plus 1 Firmware v4.2.0 (update 1)

05 November 2012 - 08:55 AM

Hi Ellen,


The best option is to use the new NETMF 4.3 release. You can use the beta SDK--but it won't change the firmware on your board. The first NETMF 4.3 beta firmware should be available this month.

Chris

Thank you Chris, we are waiting for the 4.3 beta this month. We hope the internet glitch is than solved.

@Travor, you did not install (correct) the Netduino driver, please read all the steps to install at the begin.

In Topic: Netduino Plus 1 Firmware v4.2.0 (update 1)

04 November 2012 - 10:48 AM

Hello Chris may I have your attention. We have notice that the Netduino Plus hangs when the socket.Connect is called when the internet connection is down after the N+ starts up. The only option was a reset. I have placed a full working example here: http://forums.netdui...es/page__st__20 You can run the code and on the same time stop the internet connection in your router. Then you see the error. My question, can you confirm this "bug" and do you have a workaround for it because writing to the Internet is het core of my program. Sometimes the internet connection is down here for a few minutes. I did a attempt with 4.3 beta but deploying to the N+ was without any succes.

In Topic: Insights into DHCP issues

03 November 2012 - 12:22 PM

Now Baxter, I can exactly tell you what is wrong.!

The Netduino will hang when you have a internet connection but after a while the IP provider stops the connection for a reason.

Do While True

            Try
                Debug.Print("begin " & DateTime.Now.ToString)

                OnboardLed.Write(True)

                Dim IPEndPoint As New IPEndPoint(Dns.GetHostEntry("api.pachube.com").AddressList(0), 80)

                Using Host As Socket = New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)

                    Host.SetSocketOption(SocketOptionLevel.Tcp, SocketOptionName.NoDelay, True)
                    Host.SendTimeout = 3000
                    Host.ReceiveTimeout = 1000


                    'WITH internet connection it wil run perfect, but now without internet (after you had a connection)'
                    '  and still on the local network then..........'

                    Debug.Print("WHEN INTERNET connection fails after a time, than the NETDUINO HANG!!!!")

                    Host.Connect(IPEndPoint)  'It will hang here.!'

                    Debug.Print("Oké, stil connection")

                End Using


            Catch ex As Exception
                Debug.Print("error " & ex.Message) 'no error will show here'
            End Try

            OnboardLed.Write(False)
            Debug.Print("sleep")
            Thread.Sleep(10000)

        Loop

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.