Recent changes
Slingshot user guide
tag Guide, user
NFCLamp user guide
tag Guide, user
Homepage
MPL115A2
Compiler Error 42
From the mbed microcontroller Cookbook.  

Networking Stack Releases

Source

The full stack source and documentation is available here (V1.04):

» Import this programNetServicesSource

NetServices Stack source

Precompiled versions

Built against the mbed library rev 24.

Please report any bugs, suggestions, feature requests in the associated Forum Thread.

V1.xx - Current release

V1.04 - 05-08-2010

To update one of the components in the compiler, just right-click on the library and select 'Update...'

Warning

This version is compiled against the mbed library rev 24. If you are updating the mbed library in one of your programs using the stack, please update the stack as well, and vice-versa.

Fixes

Features

V1.03 - 09-07-2010

Fixes

Features

V1.02 - 18-06-2010

Fixes

Features

V1.01 - 14-06-2010

Fixes

Features

V1.00 - 11-06-2010

Features

Significant changes from the beta

Known bugs & issues




calendar Page history
Last modified 05 Aug 2010, by   user Donatien Garnier   tag No tags | 5 comments  

5 comments on Networking Stack Releases:

26 Jun 2010

Hello,

Is there any plan to add IPv6 support to the stack ?

29 Sep 2010

Hi everybody

If you are compiling the code yourself and want to get rid of the highly annoying warnings, you can use pragma directives in the relevant source files:

Code

// http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0495a/BABDJCCI.html
#pragma diag_remark 1293 // assignment in condition
#pragma diag_remark 1464 // taking the address of a temporary
#pragma diag_remark 177 // <entity> was declared but never referenced
26 Mar 2011

What TCPSocket throughput have you achieved?

I can reach 3000 bytes/s maximum.

26 Mar 2011

Hi Donatien,

Any clean way to set the link state to the states available in Ethernet.set_link() ? ( here http://mbed.org/projects/libraries/api/mbed/trunk/Ethernet#Ethernet.set_link )

30 Nov 2011

Hi Donatien,

I found a bug in EthernetNetIf.cpp for static IP. EthernetNetIf constructor for static IP set DNS server address by dns_setserver(). But dns_setserver() is should be called after lwip_init() call. So, this dns_setserver() call fails.

Please login to post comments.