|
diff --git a/TODO b/TODO
index 2fe2b3807b..8c777ae4c4 100644
--- a/TODO
+++ b/TODO
@@ -1,4 +1,4 @@
-NuttX TODO List (Last updated May 15, 2012)
+NuttX TODO List (Last updated June 20, 2012)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This file summarizes known NuttX bugs, limitations, inconsistencies with
@@ -1465,11 +1465,16 @@ o MIPS/PIC32(arch/mips)
up and crashes with a bad stack.
So far, I have no clue why this is failing.
+
UPDATE: This bug was recorded using the PIC32 Ethernet
Starter kit with a RAM disk (that board has no SD card slot).
Howevever, using the USB mass storage device with the
Mikroelektronika using a real SD card, there is no such
- problem -- the mass storage device is quite stable.
+ problem -- the mass storage device seems quite stable.
+
+ UPDATE: Hmmm.. retesting with the Mikroelectronka board
+ shows problems again. I think that there are some subtle
+ timing bugs whose effects can very from innocuous to severe.
Status: Open
Priority: Originally, High BUT reduced to very Low based on the
UPDATED comments.
diff --git a/arch/mips/src/pic32mx/pic32mx-config.h b/arch/mips/src/pic32mx/pic32mx-config.h
index 5a5ae00abb..4dd0a150e6 100644
--- a/arch/mips/src/pic32mx/pic32mx-config.h
+++ b/arch/mips/src/pic32mx/pic32mx-config.h
@@ -715,8 +715,8 @@
#endif
#ifndef CONFIG_PIC32MX_FUPLLEN
-# if defined(CHIP_PIC32MX3) || defined(CHIP_PIC32MX4)
-# define CONFIG_PIC32MX_FUPLLEN 0 /* Bypass and disable */
+# if defined(CONFIG_PIC32MX_USBDEV) || defined(CONFIG_PIC32MX_USBHOST)
+# define CONFIG_PIC32MX_FUPLLEN 0 /* Enable */
# else
# define CONFIG_PIC32MX_FUPLLEN 1 /* Bypass and disable */
# endif
|