summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-24 18:00:55 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-24 18:00:55 +0000
commiteb1792e5e7111aa922fcf38fbf5d0eb37ffb8083 (patch)
treef4b0ee0cf59073a88327dabc24077d89d19c08c4
parentaee2480fc6f591ac4b0d62cbba3770a033331819 (diff)
downloadnuttx-eb1792e5e7111aa922fcf38fbf5d0eb37ffb8083.tar.gz
nuttx-eb1792e5e7111aa922fcf38fbf5d0eb37ffb8083.tar.bz2
nuttx-eb1792e5e7111aa922fcf38fbf5d0eb37ffb8083.zip
Minor fixes to PIC32MX7MMB led controls
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4651 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/TODO12
-rw-r--r--nuttx/configs/pic32mx7mmb/include/board.h5
-rw-r--r--nuttx/configs/pic32mx7mmb/ostest/defconfig4
-rw-r--r--nuttx/configs/pic32mx7mmb/src/pic32mx7mmb_internal.h8
-rw-r--r--nuttx/configs/pic32mx7mmb/src/up_leds.c25
-rw-r--r--nuttx/drivers/Kconfig61
6 files changed, 94 insertions, 21 deletions
diff --git a/nuttx/TODO b/nuttx/TODO
index 030fe57e3..9d6a2d80c 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -193,7 +193,7 @@ o pthreads (sched/)
Priority: Low, probably not that useful
Title: PTHREAD_PRIO_PROTECT
- Extended pthread_mutexattr_setprotocol() suport PTHREAD_PRIO_PROTECT:
+ Description: Extended pthread_mutexattr_setprotocol() suport PTHREAD_PRIO_PROTECT:
"When a thread owns one or more mutexes initialized with the
PTHREAD_PRIO_PROTECT protocol, it shall execute at the higher of its
priority or the highest of the priority ceilings of all the mutexes
@@ -367,7 +367,7 @@ o Network (net/, drivers/net)
Priority: Medium, The feature is not important, but it is important
for NuttX to resolve the architectural issues.
- Title: SENTDO() AND MULTIPLE NETWORK INTERFACE SUPPORT
+ Title: SENDTO() AND MULTIPLE NETWORK INTERFACE SUPPORT
Description: sendto() and multiple network interface support:
When polled, would have to assure that the destination IP
is on the subnet served by the polling driver.
@@ -1257,6 +1257,14 @@ o ARM/STM32 (arch/arm/src/stm32/)
Status: Open
Priority: Low (I am not even sure if this is a problem yet).
+ Status: Unfinished STM32 F4 OTG FS Host Driver
+ Description: A quick-n-dirty leverage of the the LPC17xx host driver was put into
+ the STM32 source to support development of the STM32 F4 OTG FS host
+ driver. It is non-functional and still waiting for STM32 F4 logic
+ to be added. Don't use it!
+ Status: Open
+ Priority: Low (unless you need a host driver).
+
o AVR (arch/avr)
^^^^^^^^^^^^^^
diff --git a/nuttx/configs/pic32mx7mmb/include/board.h b/nuttx/configs/pic32mx7mmb/include/board.h
index 91c767e5b..126b4170f 100644
--- a/nuttx/configs/pic32mx7mmb/include/board.h
+++ b/nuttx/configs/pic32mx7mmb/include/board.h
@@ -102,11 +102,14 @@
/* The Mikroelektronika PIC32MX7 MMB has 3 user LEDs labeled LED0-2 in the
* schematics:
*
+ * --- ----- --------------------------------------------------------------
* PIN Board Notes
- * --- ----- --------------------------------
+ * --- ----- --------------------------------------------------------------
* RA0 LED0 Pulled-up, low value illuminates
* RA1 LED1 Pulled-up, low value illuminates
* RD9 LED2 Pulled-up, low value illuminates
+ * --- LED4 Not controllable by software, indicates MMC/SD activity
+ * --- LED5 Not controllable by software, indicates power-on
*/
/* LED index values for use with pic32mx_setled() */
diff --git a/nuttx/configs/pic32mx7mmb/ostest/defconfig b/nuttx/configs/pic32mx7mmb/ostest/defconfig
index 85ce60627..efd547d14 100644
--- a/nuttx/configs/pic32mx7mmb/ostest/defconfig
+++ b/nuttx/configs/pic32mx7mmb/ostest/defconfig
@@ -300,8 +300,8 @@ CONFIG_UART6_2STOP=0
# enabled; 0=RMII enabled
#
CONFIG_PHY_KS8721=n
-CONFIG_PHY_DP83848C=y
-CONFIG_PHY_LAN8720=n
+CONFIG_PHY_DP83848C=n
+CONFIG_PHY_LAN8720=y
CONFIG_PHY_AUTONEG=y
CONFIG_PHY_SPEED100=n
CONFIG_PHY_FDUPLEX=y
diff --git a/nuttx/configs/pic32mx7mmb/src/pic32mx7mmb_internal.h b/nuttx/configs/pic32mx7mmb/src/pic32mx7mmb_internal.h
index fceee92f7..dceb3c070 100644
--- a/nuttx/configs/pic32mx7mmb/src/pic32mx7mmb_internal.h
+++ b/nuttx/configs/pic32mx7mmb/src/pic32mx7mmb_internal.h
@@ -49,12 +49,14 @@
/* The Mikroelektronika PIC32MX7 MMB has 3 user LEDs labeled LED0-2 in the
* schematics:
*
- * --- ----- --------------------------------
- * PIN BOARD NOTES
- * --- ----- --------------------------------
+ * --- ----- --------------------------------------------------------------
+ * PIN Board Notes
+ * --- ----- --------------------------------------------------------------
* RA0 LED0 Pulled-up, low value illuminates
* RA1 LED1 Pulled-up, low value illuminates
* RD9 LED2 Pulled-up, low value illuminates
+ * --- LED4 Not controllable by software, indicates MMC/SD activity
+ * --- LED5 Not controllable by software, indicates power-on
*/
/* The Mikroelektronika PIC32MX7 MMB has a joystick:
diff --git a/nuttx/configs/pic32mx7mmb/src/up_leds.c b/nuttx/configs/pic32mx7mmb/src/up_leds.c
index 6424994c1..56e00f2ae 100644
--- a/nuttx/configs/pic32mx7mmb/src/up_leds.c
+++ b/nuttx/configs/pic32mx7mmb/src/up_leds.c
@@ -61,11 +61,14 @@
/* The Mikroelektronika PIC32MX7 MMB has 3 user LEDs labeled LED0-2 in the
* schematics:
*
+ * --- ----- --------------------------------------------------------------
* PIN Board Notes
- * --- ----- --------------------------------
+ * --- ----- --------------------------------------------------------------
* RA0 LED0 Pulled-up, low value illuminates
* RA1 LED1 Pulled-up, low value illuminates
* RD9 LED2 Pulled-up, low value illuminates
+ * --- LED4 Not controllable by software, indicates MMC/SD activity
+ * --- LED5 Not controllable by software, indicates power-on
*
* If CONFIG_ARCH_LEDS is defined, then NuttX will control these LEDs as follows:
*
@@ -83,9 +86,9 @@
* LED_PANIC 5 ON N/C N/C OFF N/C N/C
*/
-#define GPIO_LED_0 (GPIO_OUTPUT|GPIO_VALUE_ZERO|GPIO_PORTA|GPIO_PIN0)
-#define GPIO_LED_1 (GPIO_OUTPUT|GPIO_VALUE_ZERO|GPIO_PORTA|GPIO_PIN1)
-#define GPIO_LED_2 (GPIO_OUTPUT|GPIO_VALUE_ZERO|GPIO_PORTD|GPIO_PIN9)
+#define GPIO_LED_0 (GPIO_OUTPUT|GPIO_VALUE_ONE|GPIO_PORTA|GPIO_PIN0)
+#define GPIO_LED_1 (GPIO_OUTPUT|GPIO_VALUE_ONE|GPIO_PORTA|GPIO_PIN1)
+#define GPIO_LED_2 (GPIO_OUTPUT|GPIO_VALUE_ONE|GPIO_PORTD|GPIO_PIN9)
/* LED Management Definitions ***********************************************/
@@ -176,19 +179,21 @@ static const uint16_t g_ledpincfg[PIC32MX_PIC32MX7MMB_NLEDS] =
#ifdef CONFIG_ARCH_LEDS
void up_setleds(FAR const struct led_setting_s *setting)
{
+ /* LEDs are pulled up so writing a low value (false) illuminates them */
+
if (setting->led0 != LED_NC)
{
- pic32mx_gpiowrite(GPIO_LED_0, setting->led0 == LED_ON);
+ pic32mx_gpiowrite(GPIO_LED_0, setting->led0 != LED_ON);
}
if (setting->led1 != LED_NC)
{
- pic32mx_gpiowrite(GPIO_LED_1, setting->led1 == LED_ON);
+ pic32mx_gpiowrite(GPIO_LED_1, setting->led1 != LED_ON);
}
if (setting->led2 != LED_NC)
{
- pic32mx_gpiowrite(GPIO_LED_2, setting->led2 == LED_ON);
+ pic32mx_gpiowrite(GPIO_LED_2, setting->led2 != LED_ON);
}
}
#endif
@@ -217,9 +222,11 @@ void pic32mx_ledinit(void)
#ifndef CONFIG_ARCH_LEDS
void pic32mx_setled(int led, bool ledon)
{
+ /* LEDs are pulled up so writing a low value (false) illuminates them */
+
if ((unsigned)led < PIC32MX_PIC32MX7MMB_NLEDS)
{
- pic32mx_gpiowrite(g_ledpincfg[led], ledon);
+ pic32mx_gpiowrite(g_ledpincfg[led], !ledon);
}
}
#endif
@@ -231,6 +238,8 @@ void pic32mx_setled(int led, bool ledon)
#ifndef CONFIG_ARCH_LEDS
void pic32mx_setleds(uint8_t ledset)
{
+ /* Call pic32mx_setled() with ledon == true to illuminated the LED */
+
pic32mx_setled(PIC32MX_PIC32MX7MMB_LED0, (ledset & PIC32MX_PIC32MX7MMB_LED0_BIT) != 0);
pic32mx_setled(PIC32MX_PIC32MX7MMB_LED1, (ledset & PIC32MX_PIC32MX7MMB_LED1_BIT) != 0);
pic32mx_setled(PIC32MX_PIC32MX7MMB_LED2, (ledset & PIC32MX_PIC32MX7MMB_LED2_BIT) != 0);
diff --git a/nuttx/drivers/Kconfig b/nuttx/drivers/Kconfig
index 9df512945..b605166b0 100644
--- a/nuttx/drivers/Kconfig
+++ b/nuttx/drivers/Kconfig
@@ -42,6 +42,57 @@ config RAMLOG
output in a FIFO in RAM. It differs from a pipe in numerous
details as needed to support logging.
+if RAMLOG
+config RAMLOG_SYSLOG
+ bool "Use RAMLOG for SYSLOG"
+ default n
+ depends on SYSLOG
+ ---help---
+ Use the RAM logging device for the syslogging interface. If this feature
+ is enabled (along with SYSLOG), then all debug output (only) will be re-directed
+ to the circular buffer in RAM. This RAM log can be view from NSH using the
+ 'dmesg'command.
+
+config RAMLOG_CONSOLE
+ bool "Use RAMLOG for /dev/console"
+ default n
+ depends on DEV_CONSOLE
+ ---help---
+ Use the RAM logging device as a system console. If this feature is enabled (along
+ with DEV_CONSOLE), then all console output will be re-directed to a circular
+ buffer in RAM. This is useful, for example, if the only console is a Telnet
+ console. Then in that case, console output from non-Telnet threads will go to
+ the circular buffer and can be viewed using the NSH 'dmesg' command.
+
+config RAMLOG_CONSOLE_BUFSIZE
+ int "RAMLOG buffer size"
+ default 1024
+ depends on RAMLOG_SYSLOG || RAMLOG_CONSOLE
+ ---help---
+ Size of the console RAM log. Default: 1024
+
+config RAMLOG_CRLF
+ bool "RAMLOG CR/LF"
+ default n
+ ---help---
+ Pre-pend a carriage return before every linefeed that goes into the RAM log.
+
+config RAMLOG_NONBLOCKING
+ bool "RAMLOG non-block reads"
+ default y
+ ---help---
+ Reading from the RAMLOG will never block if the RAMLOG is empty. If the RAMLOG
+ is empty, then zero is returned (usually interpreted as end-of-file).
+
+config RAMLOG_NPOLLWAITERS
+ int "RAMLOG number of poll waiters"
+ default 4
+ depends on !DISABLE_POLL
+ ---help---
+ The maximum number of threads that may be waiting on the poll method.
+
+endif
+
config CAN
bool "CAN support"
default n
@@ -50,25 +101,25 @@ config CAN
See include/nuttx/can.h for further CAN driver information.
if CAN
-config CONFIG_CAN_EXTID
+config CAN_EXTID
bool "CAN extended IDs"
default n
---help---
Enables support for the 29-bit extended ID. Default Standard 11-bit IDs.
-config CONFIG_CAN_FIFOSIZE
+config CAN_FIFOSIZE
int "CAN driver I/O buffer size"
default 8
---help---
The size of the circular buffer of CAN messages. Default: 8
-config CONFIG_CAN_NPENDINGRTR
+config CAN_NPENDINGRTR
int "Number of pending RTRs"
default 4
---help---
The size of the list of pending RTR requests. Default: 4
-config CONFIG_CAN_LOOPBACK
+config CAN_LOOPBACK
bool "CAN extended IDs"
default n
---help---
@@ -271,7 +322,7 @@ menuconfig SERCOMM_CONSOLE
See http://bb.osmocom.org/trac/wiki/nuttx-bb/run for detailed the usage
of nuttx with sercomm.
- drivers/sercomm is only built if CONFIG_SERCOMM_CONSOLE in the NuttX
+ drivers/sercomm is only built if SERCOMM_CONSOLE in the NuttX
configuration file. If you attempt to build this driver without
osmocom-bb, you will get compilation errors because of header files
that are needed from the osmocom-bb.