diff --git a/Documentation/README.html b/Documentation/README.html
index fe4dced9adb..7c44a55916c 100644
--- a/Documentation/README.html
+++ b/Documentation/README.html
@@ -8,7 +8,7 @@
NuttX README Files
- Last Updated: May 9, 2017
+ Last Updated: June 10, 2017
|
@@ -62,6 +62,8 @@ nuttx/
| | `- README.txt
| |- avr32dev1/
| | `- README.txt
+ | |- b-l475e-iot01a/
+ | | `- README.txt
| |- bambino-200e/
| | `- README.txt
| |- c5471evm/
diff --git a/README.txt b/README.txt
index c5e0b9c69e6..8e466a7dd40 100644
--- a/README.txt
+++ b/README.txt
@@ -1462,6 +1462,8 @@ nuttx/
| | `- README.txt
| |- avr32dev1/
| | `- README.txt
+ | |- b-l475e-iot01a/
+ | | `- README.txt
| |- bambino-200e/
| | `- README.txt
| |- c5471evm/
diff --git a/configs/b-l475e-iot01a/README.txt b/configs/b-l475e-iot01a/README.txt
new file mode 100644
index 00000000000..5c299446f83
--- /dev/null
+++ b/configs/b-l475e-iot01a/README.txt
@@ -0,0 +1,205 @@
+README
+======
+
+ This README discusses the port of NuttX to the STMicro B-L475E-IOT01A
+ Discovery kit powered by STM32L475VG Cortex-M4. This board targets IoT
+ nodes with a choice of connectivity options including WiFi, Bluetooth LE,
+ NFC, and sub-GHZ RF at 868 or 915 MHz, as well as a long list of various
+ environmental sensors.
+
+Contents
+========
+
+ - Board Features
+ - LEDs and Buttons
+ - Serial Console
+ - Configurations
+
+Board Features
+==============
+
+ B-L475E-IOT01A Discovery kit key features and specifications:
+
+ - MCU: STM32L475 Series MCU based on ARM Cortex-M4 core with 1 MB
+ Flash memory, 128 KB SRAM
+ - Storage: 64 Mbit (8MB) Quad-SPI Flash memory (Macronix)
+ - Connectivity:
+ Bluetooth 4.1 LE module (SPBTLE-RF)
+ Sub-GHz (868 or 915 MHz) low-power-programmable RF module (SPSGRF-868
+ or SPSGRF-915)
+ Wi-Fi module based on Inventek ISM43362-M3G-L44 (802.11 b/g/n
+ compliant)
+ Dynamic NFC tag based on M24SR with its printed NFC antenna
+ - Sensors:
+ 2x digital omni-directional microphones (MP34DT01)
+ Capacitive digital sensor for relative humidity and temperature
+ (HTS221)
+ 3-axis magnetometer (LIS3MDL)
+ 3D accelerometer and 3D gyroscope (LSM6DSL)
+ 260-1260 hPa absolute digital output barometer (LPS22HB)
+ Time-of-Flight and gesture-detection sensor (VL53L0X
+ - USB – 1x micro USB OTG port (Full speed)
+ - Expansion – Arduino UNO V3 headers, PMOD header
+ - Debugging – On-board ST-LINK/V2-1 debugger/programmer with USB
+ re-enumeration capability: mass storage, virtual COM port and debug
+ port
+ - Misc – 2 push-buttons (user and reset)
+ - Power Supply – 5V via ST LINK USB VBUS or external sources
+
+ The board supports ARM mbed online compiler, but can also be programmed
+ using IDEs such as IAR, Keil, and GCC-based IDEs. STMicro also provides
+ HAL libraries and code samples as part of the STM32Cube Package, as well
+ as X-CUBE-AWS expansion software to connect to the Amazon Web Services
+ (AWS) IoT platform.
+
+LEDs and Buttons
+================
+
+ The black button B1 located on top side is the reset of the STM32L475VGT6.
+
+ The blue button B1 located top side is available to be used as a digital
+ input or as alternate function Wake-up. When the button is depressed the logic state is "0", otherwise the logic state is "1".
+
+ Two green LEDs (LD1 and LD2), located on the top side are available for the user. To light a LED a high logic state "1" should be written in the corresponding GPIO.
+
+ Reference Color Name Comment
+ B2 blue Wake-up Alternate function Wake-up
+ LD1 green LED1 PA5 (alternate with ARD.D13)
+ LD2 green LED2 PB14
+
+ These LEDs are not used by the board port unless CONFIG_ARCH_LEDS is
+ defined. In that case, the usage by the board port is defined in
+ include/board.h and src/lpc31_leds.c. The LEDs are used to encode
+ OS-related events as follows:
+
+ SYMBOL Meaning LED state
+ LED2 LED1
+ ------------------- ----------------------- -------- --------
+ LED_STARTED NuttX has been started OFF OFF
+ LED_HEAPALLOCATE Heap has been allocated OFF OFF
+ LED_IRQSENABLED Interrupts enabled OFF OFF
+ LED_STACKCREATED Idle stack created ON OFF
+ LED_INIRQ In an interrupt N/C N/C
+ LED_SIGNAL In a signal handler N/C N/C
+ LED_ASSERTION An assertion failed N/C N/C
+ LED_PANIC The system has crashed N/C Blinking
+ LED_IDLE MCU is is sleep mode Not used
+
+ Thus if LED2 is statically on, NuttX has successfully booted and is,
+ apparently, running normmally. If LED1 is flashing at approximately
+ 2Hz, then a fatal error has been detected and the system has halted.
+
+ NOTE: That LED2 is not used after completion of booting and may
+ be used by other board-specific logic.
+
+Serial Console
+==============
+
+ Arduino Serial Shield
+ ---------------------
+ An TLL-to-RS232 Converter shield may be used with UART4:
+
+ UART4:
+ -------------- ---------------- ------------------
+ STM32L475VGTx Board Signal Arduino Connector
+ -------------- ---------------- ------------------
+ UART4_RX PA1 ARD.D0-UART4_RX CN3 pin1 RX/D0
+ UART4_TX PA0 ARD.D1-UART4_TX CN3 pin2 TX/D1
+ -------------- ---------------- ------------------
+
+ Virtual COM Port
+ ----------------
+ The serial interface USART1 is directly available as a virtual COM port
+ of the PC connected to the ST-LINK/V2-1 USB connector CN7.
+
+ USART1:
+ -------------- ---------------- --------------
+ STM32L475VGTx Board Signal STM32F103CBT6
+ -------------- ---------------- --------------
+ USART1_TX PB6 ST-LINK-UART1_TX USART2_RX PA3
+ UAART1_RX PB7 ST-LINK-UART1_RX USART2_TX PA2
+ -------------- ---------------- --------------
+
+ The virtual COM port settings are configured as: 115200 b/s, 8 bits data,
+ no parity, 1 stop bit, no flow control.
+
+ Other Options
+ -------------
+
+ USART2 - Available on CN10 if solder bridges closed.
+ -------------- ---------------- ---------------------------
+ STM32L475VGTx Board Signal PMOD / Solder Bridges
+ -------------- ---------------- ---------------------------
+ USART2_RX PD4 PMOD-UART2_RX CN10 pin1 or 2 (SB12, SB14)
+ USART2_TX PD5 PMOD-UART2_TX CN10 pin2 TX/D1 (SB20)
+ -------------- ---------------- ---------------------------
+
+ USART3 - Dedicated to ISM43362-M3G-L44 Serial-to-Wifi Module.
+ -------------- ---------------- ------------------
+ STM32L475VGTx Board Signal Arduino Connector
+ -------------- ---------------- ------------------
+ USART3_RX PD9 INTERNAL-UART3_RX CN3 pin1 RX/D0
+ USART3_TX PD8 INTERNAL-UART3_TX CN3 pin2 TX/D1
+ -------------- ---------------- ------------------
+
+Configurations
+==============
+
+ Information Common to All Configurations
+ ----------------------------------------
+ Each B-L475E-IOT01A configuration is maintained in a sub-directory and
+ can be selected as follow:
+
+ cd tools
+ ./configure.sh b-l475e-iot01a/
+ cd -
+
+ Before building, make sure that:
+
+ 1. The PATH environment variable include the correct path to the
+ directory than holds your toolchain binaries.
+ 2. Make sure that the configuration is set for your build platform
+ and that the toolchain is set for the toolchain type you are using.
+
+ And then build NuttX by simply typing the following. At the conclusion of
+ the make, the nuttx binary will reside in an ELF file called, simply,
+ nuttx.
+
+ make oldconfig
+ make
+
+ The that is provided above as an argument to the
+ tools/configure.sh must be is one of the following.
+
+ NOTES:
+
+ 1. These configurations use the mconf-based configuration tool. To
+ change any of these configurations using that tool, you should:
+
+ a. Build and install the kconfig-mconf tool. See nuttx/README.txt
+ see additional README.txt files in the NuttX tools repository.
+
+ b. Execute 'make menuconfig' in nuttx/ in order to start the
+ reconfiguration process.
+
+ 2. Unless stated otherwise, all configurations generate console
+ output on USART1 (i.e., for ST-Link Virtual COM port).
+
+ 3. All of these configurations are set up to build under Windows using the
+ "GNU Tools for ARM Embedded Processors" that is maintained by ARM
+ (unless stated otherwise in the description of the configuration).
+
+ https://launchpad.net/gcc-arm-embedded
+
+ That toolchain selection can easily be reconfigured using
+ 'make menuconfig'. Here are the relevant current settings:
+
+ Build Setup:
+ CONFIG_HOST_WINDOWS=y : Window environment
+ CONFIG_WINDOWS_CYGWIN=y : Cywin under Windows
+
+ System Type -> Toolchain:
+ CONFIG_ARMV7M_TOOLCHAIN_GNU_EABIW=y : GNU ARM EABI toolchain
+
+Configuration sub-directories
+-----------------------------