diff --git a/Documentation/acronyms.txt b/Documentation/acronyms.txt index dcf5fc5eed..1a0865a6e2 100644 --- a/Documentation/acronyms.txt +++ b/Documentation/acronyms.txt @@ -5,6 +5,7 @@ AIC Advanced Interrupt Controller (Atmel SAM) ARP Address Resolution Protocol (networking) BCH Block to Character BINFMT Binary Format (Dynamic Loader) +BLE Bluetooth4 Low Energy BPP Bits Per Pixel CAN Controller Area Network CDC Communication Device Class (USB) @@ -79,13 +80,16 @@ OTP One-Time Programmable PWM Pulse Width Modulation PKT "Raw" Packet socket (networking) PRNG Pseudo-Random Number Generator +QSPI Quad SPI RAM Random Access Memory RNG Random Number Generator ROM Read-Only Memory +RNDIS Remote Network Driver Interface Specification (USB, networking) RTC Real Time Clock RTCC Real Time Clock/Calendar RTOS Real Time Operating System SAIC Secure Advanced Interrupt Controller (Atmel SAM) +SCI Serial Communications Inteface SD Secure Digital (flash memory) SDHC Secure Digital High Capacity (flash memory), Secure Digital Host Controller (hardware) @@ -98,6 +102,7 @@ SPRNG Scalable Parallel Random Number Generator SRAM Static RAM SYSLOG System Log TCP Transmission Control Protocol (networking) +TRNG True Random Number Generator TSC Touchscreen Controller TUN network TUNnel TWI Two-Wire Interface (serial interface) @@ -105,6 +110,7 @@ UDP User Datagram Protocol (networking) UART Universal Asynchronous Receiver/Transmitter USB Universal Serial Bus (serial interface) USART Universal Synchronous/Asynchronous Receiver/Transmitter +VNC Virtual Network Computing (graphics, remote desktop) WAN Wide Area Network (networking) WLAN Wireless Local Area Network (networking) WPAN Wireless Personal Area Network (networking) diff --git a/include/limits.h b/include/limits.h index 0c63b79ba9..bc04dcfd5d 100644 --- a/include/limits.h +++ b/include/limits.h @@ -134,19 +134,19 @@ #ifdef CONFIG_SMALL_MEMORY -#define _POSIX_SIZE_MAX 65535 /* See sys/types.h */ +#define _POSIX_SIZE_MAX 65535 /* See sys/types.h */ #define _POSIX_SIZE_MIN 0 -#define _POSIX_SSIZE_MAX 32767 /* See sys/types.h */ +#define _POSIX_SSIZE_MAX 32767 /* See sys/types.h */ #define _POSIX_SSIZE_MIN -32768 #else /* CONFIG_SMALL_MEMORY */ -#define _POSIX_SIZE_MAX 4294967295L /* See sys/types.h */ +#define _POSIX_SIZE_MAX 4294967295UL /* See sys/types.h */ #define _POSIX_SIZE_MIN 0 -#define _POSIX_SSIZE_MAX 2147483647UL /* See sys/types.h */ -#define _POSIX_SSIZE_MIN -2147483648UL +#define _POSIX_SSIZE_MAX 2147483647L /* See sys/types.h */ +#define _POSIX_SSIZE_MIN -2147483648L #endif /* CONFIG_SMALL_MEMORY */