diff --git a/ChangeLog b/ChangeLog index 5b3063c30d..7b32ae20f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2896,4 +2896,8 @@ when the work queue is enabled. This is partially because some interrupt related logic is not built in that case. Simply disabling then re- enabling interrupts restores the proper state. + * graphics/nxglib/lcd/nxglib_filltrapezoid.c and fb/nxglib_filltrapezoid.c: + Fix an error when the trapezoid is only 1 line high. In this case, a + divide by zero error would occur. The fix is to draw the 1 line high + trapezoid as a run. diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index a467917f09..8a4489ff6f 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -2275,7 +2275,7 @@
STATUS:
Two verified configurations are available:
- (1) The basic OS test configuration that verfies the correctnexx port of Nuttx, and (2) an extensive NuttShell (NSH) configuration.
+ (1) The basic OS test configuration that verfies the correctness port of Nuttx, and (2) an extensive NuttShell (NSH) configuration.
The NSH configuration includes:
(1) Full network support,
(2) Verified SPI driver,
diff --git a/configs/pic32mx7mmb/nsh/appconfig b/configs/pic32mx7mmb/nsh/appconfig
index 99292fc2bd..faa1f49ce7 100644
--- a/configs/pic32mx7mmb/nsh/appconfig
+++ b/configs/pic32mx7mmb/nsh/appconfig
@@ -65,7 +65,7 @@ ifeq ($(CONFIG_CDCACM),y)
CONFIGURED_APPS += examples/cdcacm
# Uncomment the following to enable the examples/usbterm built-in
# CONFIGURED_APPS += examples/usbterm
-#else
+else
# Prolifics PL2303 emulation configurations
diff --git a/graphics/nxglib/fb/nxglib_filltrapezoid.c b/graphics/nxglib/fb/nxglib_filltrapezoid.c
index 64554fae1c..7623bf84fc 100644
--- a/graphics/nxglib/fb/nxglib_filltrapezoid.c
+++ b/graphics/nxglib/fb/nxglib_filltrapezoid.c
@@ -1,8 +1,8 @@
/****************************************************************************
* graphics/nxglib/fb/nxglib_filltrapezoid.c
*
- * Copyright (C) 2008-2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt