Skip to content

Commit 6f94a9b

Browse files
author
fpr
committed
Some documentation modification
Signed-off-by: fpr <[email protected]>
1 parent f0577e2 commit 6f94a9b

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

Diff for: libraries/LwIP/library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version=2.0.0
33
author=Adam Dunkels <[email protected]>
44
maintainer=See url
55
sentence=A Lightweight TCP/IP stack
6-
paragraph=lwIP is a small independent implementation of the TCP/IP protocol suite that has been developed by Adam Dunkels at the Computer and Networks Architectures (CNA) lab at the Swedish Institute of Computer Science (SICS). The focus of the lwIP TCP/IP implementation is to reduce the RAM usage while still having a full scale TCP. This making lwIP suitable for use in embedded systems with tens of kilobytes of free RAM and room for around 40 kilobytes of code ROM.category=Communication
6+
paragraph=lwIP is a small independent implementation of the TCP/IP protocol suite that has been developed by Adam Dunkels at the Computer and Networks Architectures (CNA) lab at the Swedish Institute of Computer Science (SICS). The focus of the lwIP TCP/IP implementation is to reduce the RAM usage while still having a full scale TCP. This making lwIP suitable for use in embedded systems with tens of kilobytes of free RAM and room for around 40 kilobytes of code ROM.
77
category=Communication
88
url=http://git.savannah.gnu.org/cgit/lwip.git
99
architectures=stm32

Diff for: libraries/NativeEthernet/README.adoc

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
= Ethernet Library for Arduino =
22

3-
With the Arduino Ethernet Shield, this library allows an Arduino board to connect to the internet.
3+
With an STM32 board with Ethernet compatibility, this library allows an STM32
4+
board (NUCLEO, DISCOVERY, ...) to connect to the internet.
45

56
For more information about this library please visit us at
67
http://www.arduino.cc/en/Reference/Ethernet
78

9+
== Note ==
10+
The library is based on LwIP, a Lightweight TCP/IP stack.
11+
http://git.savannah.gnu.org/cgit/lwip.git
12+
13+
EthernetClass::maintain() in no more required to renew IP address from DHCP.
14+
It is done automatically by the LwIP stack in a background task.
15+
16+
An Idle task is required to handle timer and data reception. Be careful to not
17+
lock the system in a loop where LwIP could never be updated.
18+
819
== License ==
920

1021
Copyright (c) 2010 Arduino LLC. All right reserved.

Diff for: libraries/NativeEthernet/README.md

-9
This file was deleted.

0 commit comments

Comments
 (0)