From fa5822f255c06fcf0b218ba8fee90649c46d35e9 Mon Sep 17 00:00:00 2001
From: Gregory Nutt
Date: Fri, 7 Sep 2018 15:35:45 -0600
Subject: [PATCH] Partial update of Documents/NuttX.html in preparation for the
7.26 release. There is still more to be done.
---
ChangeLog | 2 +-
Documentation/NuttX.html | 37 ++++++++++++++++++++++++++++---------
ReleaseNotes | 4 ++--
3 files changed, 31 insertions(+), 12 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d809a37a2f..a8a3e203e5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -20204,7 +20204,7 @@
conversions between physical and virtual address. From ligd (2018-08-24).
* net/arp: arp_find() now checks if the target IP belongs to one of the
local network devices. From Xiang Xiao (2018-08-24).
- * net/netdev: add devif_loopback_out() to check the loopback case where
+ * net/netdev: add devif_loopback() to check the loopback case where
a packet is being sent to itself. Modify the net driver to call this
function in this case. This function will simply re-inject the
packet back into the network and the network driver will not put
diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html
index c945913f69..61a5501f19 100644
--- a/Documentation/NuttX.html
+++ b/Documentation/NuttX.html
@@ -8,7 +8,7 @@
NuttX RTOS
- Last Updated: August 16, 2018
+ Last Updated: September 8, 2018
|
@@ -321,6 +321,14 @@
+
+
|
+
+
+ Standard default signal actions (optional).
+
+ |
+
|
@@ -1082,7 +1090,7 @@
|
|
- USB device controller drivers available for the PIC32, Atmel AVR, SAM3, SAM4, SAMv7, and SAMA5Dx, NXP/Freescale LPC17xx, LPC214x, LPC313x, LPC43xx, and Kinetis, Silicon Laboraties EFM32, STMicro STM32 F1, F2, F3, F4, and F7, and TI DM320.
+ USB device controller drivers available for the most MCU architectures includeing PIC32, Atmel AVR, SAM3, SAM4, SAMv7, and SAMA5Dx, NXP/Freescale LPC17xx, LPC214x, LPC313x, LPC43xx, and Kinetis, Silicon Laboraties EFM32, STMicro STM32 F1, F2, F3, F4, and F7, TI DM320, and others.
|
@@ -1433,11 +1441,11 @@
Released Versions
In addition to the ever-changing GIT repository, there are frozen released versions of NuttX available.
- The current release is NuttX 7.25.
- NuttX 7.25 is the 125th release of NuttX.
- It was released on June 3, 2018, and is available for download from the
+ The current release is NuttX 7.26.
+ NuttX 7.26 is the 126th release of NuttX.
+ It was released on September 8, 2018, and is available for download from the
Bitbucket.org website.
- Note that the release consists of two tarballs: nuttx-7.25.tar.gz
and apps-7.25.tar.gz
.
+ Note that the release consists of two tarballs: nuttx-7.26.tar.gz
and apps-7.26.tar.gz
.
Both may be needed (see the top-level nuttx/README.txt
file for build information).
@@ -1446,7 +1454,7 @@
- nuttx.
- Release notes for NuttX 7.25 are available here.
+ Release notes for NuttX 7.26 are available here.
Release notes for all released versions on NuttX are available in the Bitbucket GIT.
The ChangeLog for all releases of NuttX is available in the ChangeLog file that can viewed in the Bitbucket GIT.
The ChangeLog for the current release is at the bottom of that file.
@@ -1454,7 +1462,7 @@
apps.
- Release notes for NuttX 7.25 are available here.
+ Release notes for NuttX 7.26 are available here.
Release notes for all released versions on NuttX are available in the Bitbucket GIT
The ChangeLog for the all releases of apps/
is available in the ChangeLog file that can viewed in the Bitbucket GIT.
The ChangeLog for the current release is at the bottom of that file.
@@ -3731,6 +3739,7 @@ nsh>
This port is intended to test LC823450 features including SMP. Supported peripherals include UART, TIMER, RTC, GPIO, DMA, I2C, SPI, LCD, eMMC, and USB device.
ADC, Watchdog, IPC2, and I2S support was added by Masayuki Ishakawa in NuttX-7.23.
+ Bluetooth, SPI, and PROTECTED build support were added by Masayuki Ishakawa in NuttX-7.26.
@@ -3981,6 +3990,9 @@ nsh>
NuttX-7.22. David Sidrane contributed improvements to the USB and I2C device drivers, RTC alarm functionality, and new SPI driver.
+
+ NuttX-7.26. David Sidrane contributed DMA support to the Kinetis K6x family.
+
@@ -4737,6 +4749,9 @@ nsh>
NCP LPC54xx.
A port to the LPCXpresso-LPC54628 was added in NuttX-7.24. Initial configurations include: A basic NSH configuration (nsh), a networking configuration (netnsh), and three graphics configurations (nxwm, fb, and lvgl).
+
+ The port was verified on an LPC4508 by a NuttX user with relevant changes incorported in NuttX-7.26.
+
@@ -5395,7 +5410,11 @@ Mem: 29232 5920 23312 23312
-
NuttX-7.25.
- The initial release in NuttX-7.25 includes UART, Timer, GPIO, DMA, and Ethernet support (Ethernet support was contribute by Jake Choy).
+ The initial release in NuttX-7.25 includes UART, Timer, GPIO, DMA, and Ethernet support (Ethernet support was contributed by Jake Choy).
+
+ -
+
NuttX-7.26.
+ NuttX-7.26 added RTC, SNVX, and Serial TERMIOS support.
diff --git a/ReleaseNotes b/ReleaseNotes
index eca1b7ccfc..fd7677c44a 100644
--- a/ReleaseNotes
+++ b/ReleaseNotes
@@ -18396,7 +18396,7 @@ Additional new features and extended functionality:
devices from being removed, unregistered and re-installed,
re-registered and keeping the same interface index. From Gregory
Nutt.
- - Driver Interface: Add devif_loopback_out() to check the loopback
+ - Driver Interface: Add devif_loopback() to check the loopback
case where a packet is being sent to itself. Modify the net driver
to call this function in this case. This function will simply
re-inject the packet back into the network and the network driver
@@ -18735,7 +18735,7 @@ Additional new features and extended functionality:
- LC823450 I2S: Add tx start threshold to lc823450_i2s.c In
addition, lc823450_i2s_send() now accepts byte-aligned stream.
From Masayuki Ishikawa.
- - LC823450 SPI: Add SPI flash driver for lc823450. NOTE: Only bus
+ - LC823450 SPI: Add SPI flash driver for lc823450. NOTE: Only bus
accelerator mode is supported. From Masayuki Ishikawa.
- LC823450: Change C-Buffer under-level control. The under-level
setting was changed from 1KB to 55KB. In previous implementation,