need: In IoT devices, the TCP/IP network protocol stack is a very important software component. Without the TCP/IP network protocol stack, IoT devices cannot connect to the Internet. The TCP/IP network protocol itself is relatively complex. The amount of TCP/IP implementation code before the emergence of IoT was very large. However, for IoT devices, the memory is very limited and the processor performance is also very limited. This requires a lightweight TCP/IP network protocol stack to run, using very small memory, discarding some unnecessary functions, and retaining the main functions. Due to these requirements, several embedded TCP/IP protocol stacks have been generated, the most common ones are as follows: μC/TCP-IP, LwIP, UIP.
Common embedded TCP/IP protocol stack 1. μC/TCP-IP: μC/TCP-IP is a component of Micrium's own operating system UC/OS, which supports both IPv4 and IPv6, supports BSD socket API, and has the most popular socket options. This protocol stack is a compact, reliable, high-performance TCP/IP protocol stack optimized for embedded systems. μC/TCP-IP is completely self-coded with high quality, scalability and reliability, and can quickly configure the required network options to minimize time to market. MicriumμC/TCP-IP embedded protocol stack allows memory footprint to be adjusted according to design requirements. μC/TCP-IP can be configured to include only those network components required by the system. When a component is not used, it can be excluded from the protocol stack, saving valuable memory space. 2. LwIp network protocol stack: LwIP is a small set of TCP/IP protocol components developed by Adam Dunkels of the Swedish Academy of Sciences. The main goal of achieving this is to reduce resource usage while still having comprehensive TCP functionality. This makes lwIP suitable for embedded systems with 10Kb bytes of free RAM and can accommodate about 40Kb of code ROM. Since its inception, LwIP has been ported to multiple embedded operating systems, including the popular FreeRTOS, Alibaba Cloud's IoT operating system AliOS Things, Huawei's IoT operating system LiteOS, and so on. 3. uIP network protocol stack: uIP is mainly used for small embedded network protocol stacks for 8-bit and 16-bit microcontrollers. Initially, the uIP network protocol stack was developed by Adam Dunkels of the Swedish Institute of Computer Science. Its source code is written in C language and is completely open source. The biggest advantage of the uIP protocol stack is that it is short and powerful, with small Flash and RAM requirements. It removes uncommon functions in the complete TCP/IP and simplifies the communication process, but retains the protocols that must be used for network communication, focusing on the network layer and transport layer protocols such as IP/TCP/ICMP/UDP/ARP, ensuring the versatility of its code and the stability of its structure. LwIP protocol stack functions
From this point of view, LwIP supports a lot of functions. In addition to the traditional TCPIP, it also supports many of the latest protocols (such as mDNS, UDP-lite, 6LoWPAN, etc.) Overall architecture LwIP Architecture As can be seen from the above figure, IwIP is divided into four layers according to the TCP/IP layering, namely link layer, network layer, transport layer and application layer. The data processing flow of the protocol stack mainly includes the following three types:
The sending and receiving of data packets requires the support of mailboxes and semaphores. If it is based on an operating system, these mechanisms can be provided by the operating system. Porting only requires encapsulating the functions based on mailboxes and signals. If it is a bare-metal porting without an operating system, it is necessary to use interrupts or polling to implement the sending and receiving of data. The workload is relatively greater than without an operating system. Source code architecture LwIP protocol stack main directory We take the latest version 2.1 as an example. LwIP has three main folders: doc, src and test. Doc is the stored help document. It is different from the text file of the previous 1.4 version of the help document. It uses the doxygen tool to generate HTML format help documents based on the comments of the source code. src is the main source code directory of LwIP, and the test directory is the test scripts and some test protocol stack programs. The src directory of the LwIP protocol stack The src directory is the source code directory of the protocol stack, including four folders: api, core, include, and netif. Core is the core of the protocol stack, include is the header file directory, netif provides the driver code of the network interface layer, and the api directory provides the API interfaces of socket, tcp, and memory management. (To be continued) |
<<: Advantages of IPv6: Faster connections, richer data
>>: The 5G infrastructure dividend ignored in the Internet Queen's report
On January 30, it was learned from the Ministry o...
In the past, routers had only one purpose - to ro...
[51CTO.com original article] Let me start with a ...
This month, we have shared the discount code info...
[[343306]] Maintaining a resilient network with m...
A gateway is a computer on a network that provide...
[51CTO.com original article] When it comes to pub...
[Original article from 51CTO.com] Traditional ent...
5G pre-commercialization is imminent, and the thr...
LiteServer is a foreign hosting company founded i...
Since April 2021, my country's 5G development...
If you have been exposed to distributed systems, ...
Recently, I have come to believe that when explai...
Explore the impact of global 5G networks on futur...
[[250378]] 1. WiFi Penetration Through Walls: Que...