forked from apache/nuttx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
88bc28c
commit 081ff02
Showing
5 changed files
with
87 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
AIC Advanced Interrupt Controller (Atmel SAM) | ||
ADC Analog to Digital Conversion | ||
ARP Address Resolution Protocol (networking) | ||
BCH Block to Character | ||
CAN Controller Area Network | ||
DEVIF Device Interface (networking) | ||
DAC Digital to Analog Conversion | ||
DEV Device | ||
DRAM Dynamic RAM | ||
FAT File Allocation Table | ||
FTL FLASH Translation Layer | ||
I2C Inter-Integrated Circuit | ||
I2S Inter IC Sound | ||
ICMP Internet Control Message Protocol (networking) | ||
IOB I/O Buffer (networking) | ||
LIBC The "C" Library | ||
MM Memory Management/Manager | ||
MMC Multi-Media Card | ||
MMCSD See MMC and SD | ||
MTD Memory Technology Device | ||
NFS Network File System | ||
NETDEV Network Device (networking) | ||
NSH NuttShell | ||
NX NuttX, the NuttX Graphics server (graphics) | ||
NXFFS NuttX Flash File System | ||
NXWM The NuttX Window Manager (graphics) | ||
PID Peripheral ID (Atmel SAM) | ||
PWM Pulse Width Modulation | ||
PKT "Raw" Packet socket (networking) | ||
RAM Random Access Memory | ||
SAIC Secure Advanced Interrupt Controller (Atmel SAM) | ||
SD Secure Digital | ||
SPI Serial Periperhal Interface | ||
TCP Transmission Control Protocol (networking) | ||
TSC Touchscreen Controller | ||
TWI Two-Wire Interface | ||
UDP User Datagram Protocol (networking) | ||
UART Universal Asynchronous Receiver/Transmitter | ||
USB Universal Serial Bus | ||
USART Universal Synchronous/Asynchronous Receiver/Transmitter | ||
WDT Watchdog Timer | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
README | ||
====== | ||
|
||
Directory Structure | ||
=================== | ||
|
||
nuttx/ | ||
| | ||
`- net/ | ||
| | ||
+- arp - Address resolution protocol | ||
+- devif - Stack/device interface layer | ||
+- icmp - Internet Control Message Protocol | ||
+- iob - I/O buffering logic | ||
+- netdev - Socket network device interface | ||
+- pkt - "Raw" packet socket support | ||
+- socket - BSD socket interface | ||
+- route - Routing table support | ||
+- tcp - Transmission Control Protocol | ||
+- udp - User Datagram Protocol | ||
`- utils - Miscellaneous utility functions | ||
|
||
|
||
+-------------------------------------------------------------+ | ||
| Application layer | | ||
+-------------------------------------------------------------+ | ||
+-------------------------------------------------------------+ | ||
| Socket layer (socket/) | | ||
+-------------------------------------------------------------+ | ||
+------------++-----------------------------------------------+ | ||
| Network || Protocol stacks (arp, icmp, pkt, tcp, udp) | | ||
| Device |+-----------------------------------------------+ | ||
| Interface |+---------------------------------++------------+ | ||
| (netdev/) ||Network Device Interface (devif/)|| Utilities | | ||
+------------++---------------------------------++------------+ | ||
+-------------------------------------------------------------+ | ||
| Network Device Drivers | | ||
+-------------------------------------------------------------+ |