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.

mmw

Member Since 11 Oct 2010
Offline Last Active Feb 05 2019 09:20 PM
-----

Posts I've Made

In Topic: Network Toolkit and Netduino Plus

18 October 2010 - 11:36 AM

Yes, I didn't see where the assembly source was included for the MicroHTTP, MicroDNS, etc. It would seem that the author just provided the assemblies and the source only for the sample applications that use it. :(

There are source files for the MicroHTTP and MicroDNS projects. They look empty because they're just referring to the .cs files located at HTTP and DNS projects. Have a look at the textual view of MicroHTTP.csproj, there you'll find references like:

<Compile Include="..\HTTP\HttpServer.cs">
      <Link>HttpServer.cs</Link>
    </Compile>

The same with MicroDNS, MicroNTP and maybe others.

Regards,
Myszor

In Topic: Did I Brick my Netduino Plus?

16 October 2010 - 01:50 PM

Hello, is there any chance to deploy a new application into N+ without starting the old one? I suspect my N+ to be running endless loop now... MFDeploy recognises unit's name, but ping gives no result (sometimes even hangs). Edit: my bad, it's that issue: http://forums.netdui...udio-debugging/

In Topic: How to use the SD card and StreamWriter

14 October 2010 - 10:06 PM

It's probably an incompatible MicroSD card. What size it it?


I tried with 1 GB no-name card (got it with mobile phone) and 32 MB SanDisk Transflash card.
I've just done full format of the second one and now it works :)

In Topic: How to use the SD card and StreamWriter

14 October 2010 - 09:33 PM

Hello,

I am running dab's code to list all directories and files. I get following debug output:

Current directory: \
dir: \SD
#### Exception System.NotSupportedException - CLR_E_NOT_SUPPORTED (4) ####
#### Message:
#### Microsoft.SPOT.IO.NativeFindFile::.ctor [IP: 0000] ####
#### System.IO.Directory::GetChildren [IP: 0054] ####
#### System.IO.Directory::GetFiles [IP: 0008] ####
#### NetduinoPlusListener01.LogWriter::PrintDirectories [IP: 0034] ####
#### NetduinoPlusListener01.LogWriter::RemovableMedia_Insert [IP: 0004] ####
#### Microsoft.SPOT.IO.RemovableMedia::MessageHandler [IP: 0041] ####
A first chance exception of type 'System.NotSupportedException' occurred in Microsoft.SPOT.IO.dll
An unhandled exception of type 'System.NotSupportedException' occurred in Microsoft.SPOT.IO.dll


As you can see, an exception is thrown when invoking Directory.GetFiles() method.
What does 'System.NotSupportedException' mean? Is my SD card not compatible or it is something else?
I have latest version of N+ firmware.

Regards,
Myszor

In Topic: Simple Netduino Webserver

14 October 2010 - 06:36 PM

Hello!

Web server's code running on my N+ sometimes got frozen (there was no response to Web browser).
Following solution seems to be working:

client = newSocket.Accept();
Thread.Sleep(100);

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.