summaryrefslogtreecommitdiff
path: root/nuttx/configs
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-12-24 08:15:21 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-12-24 08:15:21 -0600
commita8aea148e48fa1393756a6737738c77b36921eb7 (patch)
tree09bfbf363a59e18342aea7d9a4d8888d9c93b1d8 /nuttx/configs
parentcab5a2ce140c24d6504fb24fd3b0a682997723e1 (diff)
downloadnuttx-a8aea148e48fa1393756a6737738c77b36921eb7.tar.gz
nuttx-a8aea148e48fa1393756a6737738c77b36921eb7.tar.bz2
nuttx-a8aea148e48fa1393756a6737738c77b36921eb7.zip
Cosmet updates to comments and README files
Diffstat (limited to 'nuttx/configs')
-rw-r--r--nuttx/configs/dk-tm4c129x/README.txt8
-rw-r--r--nuttx/configs/dk-tm4c129x/src/dk-tm4c129x.h4
-rw-r--r--nuttx/configs/dk-tm4c129x/src/tm4c_boot.c4
-rw-r--r--nuttx/configs/dk-tm4c129x/src/tm4c_ssi.c6
-rw-r--r--nuttx/configs/sama5d4-ek/include/board_sdram.h2
-rw-r--r--nuttx/configs/sama5d4-ek/src/sam_adc.c3
-rw-r--r--nuttx/configs/sama5d4-ek/src/sam_buttons.c2
-rw-r--r--nuttx/configs/sama5d4-ek/src/sam_cxxinitialize.c2
-rw-r--r--nuttx/configs/sama5d4-ek/src/sam_ostest.c2
-rw-r--r--nuttx/configs/sama5d4-ek/src/sam_pwm.c2
-rw-r--r--nuttx/configs/sama5d4-ek/src/sam_spi.c2
-rw-r--r--nuttx/configs/sama5d4-ek/src/sam_userleds.c2
-rw-r--r--nuttx/configs/tm4c123g-launchpad/include/board.h2
-rw-r--r--nuttx/configs/tm4c123g-launchpad/src/tm4c123g-launchpad.h2
-rw-r--r--nuttx/configs/tm4c123g-launchpad/src/tm4c_autoleds.c2
-rw-r--r--nuttx/configs/tm4c123g-launchpad/src/tm4c_boot.c2
-rw-r--r--nuttx/configs/tm4c123g-launchpad/src/tm4c_ssi.c2
17 files changed, 24 insertions, 25 deletions
diff --git a/nuttx/configs/dk-tm4c129x/README.txt b/nuttx/configs/dk-tm4c129x/README.txt
index 381f914ba..93e9c77b8 100644
--- a/nuttx/configs/dk-tm4c129x/README.txt
+++ b/nuttx/configs/dk-tm4c129x/README.txt
@@ -2,11 +2,11 @@ README.txt
==========
This README file discuss discusses the port of NuttX to the Texas
- Instruments DK-TM4C129x Connected Development Kit.
+ Instruments DK-TM4C129X Connected Development Kit.
Description
-----------
- The Tiva™ C Series TM4C129x Connected Development Kit highlights
+ The Tiva™ C Series TM4C129X Connected Development Kit highlights
the 120-MHz Tiva C Series TM4C129XNCZAD ARM® Cortex™-M4 based
microcontroller, including an integrated 10/100 Ethernet MAC +
PHY as well as many other key features.
@@ -461,13 +461,13 @@ DK-TM4129X Configuration Options
There are configurations for disabling support for interrupts GPIO ports.
Only GPIOP and GPIOQ pins can be used as interrupting sources on the
- TM4C129x. Additional interrupt support can be disabled if desired to
+ TM4C129X. Additional interrupt support can be disabled if desired to
reduce memory footprint.
CONFIG_TIVA_GPIOP_IRQS=y
CONFIG_TIVA_GPIOQ_IRQS=y
- TM4C129x specific device driver settings
+ TM4C129X specific device driver settings
CONFIG_UARTn_SERIAL_CONSOLE - selects the UARTn for the
console and ttys0 (default is the UART0).
diff --git a/nuttx/configs/dk-tm4c129x/src/dk-tm4c129x.h b/nuttx/configs/dk-tm4c129x/src/dk-tm4c129x.h
index 543a1dbea..7a8b7f6d8 100644
--- a/nuttx/configs/dk-tm4c129x/src/dk-tm4c129x.h
+++ b/nuttx/configs/dk-tm4c129x/src/dk-tm4c129x.h
@@ -47,7 +47,7 @@
#include "tiva_gpio.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Configuration ********************************************************************/
@@ -110,7 +110,7 @@
* Name: tm4c_ssiinitialize
*
* Description:
- * Called to configure SPI chip select GPIO pins for the DK-TM4C129x.
+ * Called to configure SPI chip select GPIO pins for the DK-TM4C129X.
*
************************************************************************************/
diff --git a/nuttx/configs/dk-tm4c129x/src/tm4c_boot.c b/nuttx/configs/dk-tm4c129x/src/tm4c_boot.c
index b35cc325b..0da8dcc8d 100644
--- a/nuttx/configs/dk-tm4c129x/src/tm4c_boot.c
+++ b/nuttx/configs/dk-tm4c129x/src/tm4c_boot.c
@@ -48,7 +48,7 @@
#include "dk-tm4c129x.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/************************************************************************************
@@ -75,7 +75,7 @@ void tiva_boardinitialize(void)
* tm4c_ssiinitialize() has been brought into the link.
*/
- /* The DK-TM4C129x microSD CS and OLED are on SSI0 */
+ /* The DK-TM4C129X microSD CS and OLED are on SSI0 */
#if defined(CONFIG_TIVA_SSI0) || defined(CONFIG_TIVA_SSI1)
if (tm4c_ssiinitialize)
diff --git a/nuttx/configs/dk-tm4c129x/src/tm4c_ssi.c b/nuttx/configs/dk-tm4c129x/src/tm4c_ssi.c
index 2d021d902..60d36af24 100644
--- a/nuttx/configs/dk-tm4c129x/src/tm4c_ssi.c
+++ b/nuttx/configs/dk-tm4c129x/src/tm4c_ssi.c
@@ -51,12 +51,12 @@
#include "tiva_gpio.h"
#include "dk-tm4c129x.h"
-/* The DK-TM4C129x microSD CS is on SSI0 */
+/* The DK-TM4C129X microSD CS is on SSI0 */
#if defined(CONFIG_TIVA_SSI0) || defined(CONFIG_TIVA_SSI1)
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* CONFIG_DEBUG_SPI enables debug output from this file (needs CONFIG_DEBUG too) */
@@ -89,7 +89,7 @@
* Name: tm4c_ssiinitialize
*
* Description:
- * Called to configure SPI chip select GPIO pins for the DK-TM4C129x.
+ * Called to configure SPI chip select GPIO pins for the DK-TM4C129X.
*
************************************************************************************/
diff --git a/nuttx/configs/sama5d4-ek/include/board_sdram.h b/nuttx/configs/sama5d4-ek/include/board_sdram.h
index 8870475ec..288e6a87d 100644
--- a/nuttx/configs/sama5d4-ek/include/board_sdram.h
+++ b/nuttx/configs/sama5d4-ek/include/board_sdram.h
@@ -44,7 +44,7 @@
#include "sam_pmc.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Clocking *************************************************************************/
diff --git a/nuttx/configs/sama5d4-ek/src/sam_adc.c b/nuttx/configs/sama5d4-ek/src/sam_adc.c
index 31f4d7c94..f45cc4799 100644
--- a/nuttx/configs/sama5d4-ek/src/sam_adc.c
+++ b/nuttx/configs/sama5d4-ek/src/sam_adc.c
@@ -50,9 +50,8 @@
#ifdef CONFIG_ADC
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
-/* Configuration ********************************************************************/
/************************************************************************************
* Private Data
diff --git a/nuttx/configs/sama5d4-ek/src/sam_buttons.c b/nuttx/configs/sama5d4-ek/src/sam_buttons.c
index 2df0c8fbe..082a31965 100644
--- a/nuttx/configs/sama5d4-ek/src/sam_buttons.c
+++ b/nuttx/configs/sama5d4-ek/src/sam_buttons.c
@@ -64,7 +64,7 @@
#ifdef CONFIG_ARCH_BUTTONS
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/configs/sama5d4-ek/src/sam_cxxinitialize.c b/nuttx/configs/sama5d4-ek/src/sam_cxxinitialize.c
index 28f3cb2f6..1972c6848 100644
--- a/nuttx/configs/sama5d4-ek/src/sam_cxxinitialize.c
+++ b/nuttx/configs/sama5d4-ek/src/sam_cxxinitialize.c
@@ -49,7 +49,7 @@
#if defined(CONFIG_HAVE_CXX) && defined(CONFIG_HAVE_CXXINITIALIZE)
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Debug ****************************************************************************/
/* Non-standard debug that may be enabled just for testing the static constructors */
diff --git a/nuttx/configs/sama5d4-ek/src/sam_ostest.c b/nuttx/configs/sama5d4-ek/src/sam_ostest.c
index 7b1ad28fb..96bdb26dc 100644
--- a/nuttx/configs/sama5d4-ek/src/sam_ostest.c
+++ b/nuttx/configs/sama5d4-ek/src/sam_ostest.c
@@ -52,7 +52,7 @@
#include "sama5d4-ek.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Configuration ********************************************************************/
diff --git a/nuttx/configs/sama5d4-ek/src/sam_pwm.c b/nuttx/configs/sama5d4-ek/src/sam_pwm.c
index 7f01328b0..f6a5cb407 100644
--- a/nuttx/configs/sama5d4-ek/src/sam_pwm.c
+++ b/nuttx/configs/sama5d4-ek/src/sam_pwm.c
@@ -50,7 +50,7 @@
#include "sama5d4-ek.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Configuration ********************************************************************/
/* PWM. There are no dedicated PWM output pins available to the user for PWM
diff --git a/nuttx/configs/sama5d4-ek/src/sam_spi.c b/nuttx/configs/sama5d4-ek/src/sam_spi.c
index 56105cfbc..b04a6f7e4 100644
--- a/nuttx/configs/sama5d4-ek/src/sam_spi.c
+++ b/nuttx/configs/sama5d4-ek/src/sam_spi.c
@@ -56,7 +56,7 @@
#if defined(CONFIG_SAMA5_SPI0) || defined(CONFIG_SAMA5_SPI1)
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Enables debug output from this file (needs CONFIG_DEBUG too) */
diff --git a/nuttx/configs/sama5d4-ek/src/sam_userleds.c b/nuttx/configs/sama5d4-ek/src/sam_userleds.c
index bc8ce1d5d..6c95ae87a 100644
--- a/nuttx/configs/sama5d4-ek/src/sam_userleds.c
+++ b/nuttx/configs/sama5d4-ek/src/sam_userleds.c
@@ -68,7 +68,7 @@
#ifndef CONFIG_ARCH_LEDS
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* CONFIG_DEBUG_LEDS enables debug output from this file (needs CONFIG_DEBUG
diff --git a/nuttx/configs/tm4c123g-launchpad/include/board.h b/nuttx/configs/tm4c123g-launchpad/include/board.h
index f2ebca3f4..dc8029a9f 100644
--- a/nuttx/configs/tm4c123g-launchpad/include/board.h
+++ b/nuttx/configs/tm4c123g-launchpad/include/board.h
@@ -41,7 +41,7 @@
************************************************************************************/
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Clocking *************************************************************************/
diff --git a/nuttx/configs/tm4c123g-launchpad/src/tm4c123g-launchpad.h b/nuttx/configs/tm4c123g-launchpad/src/tm4c123g-launchpad.h
index 90048154f..05c5ea6b2 100644
--- a/nuttx/configs/tm4c123g-launchpad/src/tm4c123g-launchpad.h
+++ b/nuttx/configs/tm4c123g-launchpad/src/tm4c123g-launchpad.h
@@ -47,7 +47,7 @@
#include "tiva_gpio.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Configuration ********************************************************************/
diff --git a/nuttx/configs/tm4c123g-launchpad/src/tm4c_autoleds.c b/nuttx/configs/tm4c123g-launchpad/src/tm4c_autoleds.c
index 7646898b1..fa8d3d826 100644
--- a/nuttx/configs/tm4c123g-launchpad/src/tm4c_autoleds.c
+++ b/nuttx/configs/tm4c123g-launchpad/src/tm4c_autoleds.c
@@ -51,7 +51,7 @@
#include "tm4c123g-launchpad.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* The TM4C123G LaunchPad has a single RGB LED. There is only one visible LED
* which will vary in color. But, from the standpoint of the firmware, this
diff --git a/nuttx/configs/tm4c123g-launchpad/src/tm4c_boot.c b/nuttx/configs/tm4c123g-launchpad/src/tm4c_boot.c
index 7ad94d973..d76dddab7 100644
--- a/nuttx/configs/tm4c123g-launchpad/src/tm4c_boot.c
+++ b/nuttx/configs/tm4c123g-launchpad/src/tm4c_boot.c
@@ -48,7 +48,7 @@
#include "tm4c123g-launchpad.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/************************************************************************************
diff --git a/nuttx/configs/tm4c123g-launchpad/src/tm4c_ssi.c b/nuttx/configs/tm4c123g-launchpad/src/tm4c_ssi.c
index dd94d97bb..eedae3e77 100644
--- a/nuttx/configs/tm4c123g-launchpad/src/tm4c_ssi.c
+++ b/nuttx/configs/tm4c123g-launchpad/src/tm4c_ssi.c
@@ -56,7 +56,7 @@
#if defined(CONFIG_TIVA_SSI0) || defined(CONFIG_TIVA_SSI1)
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* CONFIG_DEBUG_SPI enables debug output from this file (needs CONFIG_DEBUG too) */