Standardize the width of all comment boxes in C files

This commit is contained in:
Gregory Nutt 2015-10-02 17:43:08 -06:00
parent 85aaed9ef4
commit e6e46f830b
50 changed files with 129 additions and 129 deletions

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -107,14 +107,14 @@ void tiva_boardinitialize(void)
cc3200_ledinit();
}
/************************************************************************
/****************************************************************************
* Name: up_addregion
*
* Description:
* Memory may be added in non-contiguous chunks. Additional chunks are
* added by calling this function.
*
************************************************************************/
****************************************************************************/
#if CONFIG_MM_REGIONS > 1

View File

@ -122,7 +122,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -33,16 +33,16 @@
*
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Included Files
***************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/board.h>
/***************************************************************************
/****************************************************************************
* Public Functions
***************************************************************************/
****************************************************************************/
/* Application initialization stub for boardctl() */

View File

@ -33,16 +33,16 @@
*
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Included Files
***************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/board.h>
/***************************************************************************
/****************************************************************************
* Public Functions
***************************************************************************/
****************************************************************************/
/* Application initialization stub for boardctl() */

View File

@ -33,16 +33,16 @@
*
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Included Files
***************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/board.h>
/***************************************************************************
/****************************************************************************
* Public Functions
***************************************************************************/
****************************************************************************/
/* Application initialization stub for boardctl() */

View File

@ -1,4 +1,4 @@
/***************************************************************************
/****************************************************************************
* configs/ez80f910200kitg/src/ez80_lowinit.c
*
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
@ -33,31 +33,31 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Included Files
***************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include "chip/chip.h"
/***************************************************************************
/****************************************************************************
* Pre-processor Definitions
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Private Functions
***************************************************************************/
****************************************************************************/
static void ez80_gpioinit(void)
{
}
/***************************************************************************
/****************************************************************************
* Public Functions
***************************************************************************/
****************************************************************************/
void ez80_lowinit(void)
{

View File

@ -1,4 +1,4 @@
/***************************************************************************
/****************************************************************************
* configs/ez80f910200zco/src/ez80_lowinit.c
*
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
@ -33,31 +33,31 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Included Files
***************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include "chip/chip.h"
/***************************************************************************
/****************************************************************************
* Pre-processor Definitions
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Private Functions
***************************************************************************/
****************************************************************************/
static void ez80_gpioinit(void)
{
}
/***************************************************************************
/****************************************************************************
* Public Functions
***************************************************************************/
****************************************************************************/
void ez80_lowinit(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -383,7 +383,7 @@ static uint16_t spi_send(FAR struct spi_dev_s *dev, uint16_t wd)
return regval;
}
/*************************************************************************
/****************************************************************************
* Name: spi_sndblock
*
* Description:

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -1,4 +1,4 @@
/************************************************************************
/****************************************************************************
* confgs/ntosd-dm320/src/dm320_leds.c
*
* Copyright (C) 2007, 2009, 2015 Gregory Nutt. All rights reserved.
@ -31,11 +31,11 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Included Files
************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/board.h>
@ -43,25 +43,25 @@
#include "up_internal.h"
#include "chip.h"
/************************************************************************
/****************************************************************************
* Pre-processor Definitions
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Private Data
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Private Functions
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Public Funtions
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Name: board_led_initialize
************************************************************************/
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
void board_led_initialize(void)
@ -72,9 +72,9 @@ void board_led_initialize(void)
GIO_CLEAR_OUTPUT(GIO_LED_RED);
}
/************************************************************************
/****************************************************************************
* Name: board_led_on
************************************************************************/
****************************************************************************/
void board_led_on(int led)
{
@ -88,9 +88,9 @@ void board_led_on(int led)
}
}
/************************************************************************
/****************************************************************************
* Name: board_led_off
************************************************************************/
****************************************************************************/
void board_led_off(int led)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -82,7 +82,7 @@
* Once booted these functions control the 4 isolated FET outputs from the
* master BMS controller
*
***************************************************************************/
****************************************************************************/
void nucleus_bms_relay1(enum output_state state)
{
@ -108,13 +108,13 @@ void nucleus_bms_relay4(enum output_state state)
lpc17_gpiowrite(NUCLEUS_BMS_RELAY4, value);
}
/***************************************************************************
/****************************************************************************
* Name: up_relayinit
*
* Description:
* This function is called on boot to init the GPIO for relay control
*
***************************************************************************/
****************************************************************************/
void up_relayinit(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -790,7 +790,7 @@ static uint16_t spi_send(FAR struct spi_dev_s *dev, uint16_t wd)
return (uint8_t)(spi_getreg(priv, STR71X_BSPI_RXR_OFFSET) >> 8);
}
/*************************************************************************
/****************************************************************************
* Name: spi_sndblock
*
* Description:

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function definition only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -120,7 +120,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -33,16 +33,16 @@
*
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Included Files
***************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/board.h>
/***************************************************************************
/****************************************************************************
* Public Functions
***************************************************************************/
****************************************************************************/
/* Application initialization stub for boardctl() */

View File

@ -117,7 +117,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -117,7 +117,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -118,7 +118,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -118,7 +118,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -118,7 +118,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -118,7 +118,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

0
configs/samv71-xult/src/sam_atmxtconfig.c Executable file → Normal file
View File

View File

@ -118,7 +118,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -53,7 +53,7 @@
#endif
/************************************************************************************
* Global Function Prototypes
* Public Function Prototypes
************************************************************************************/
#ifndef __ASSEMBLY__

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function definition only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -121,7 +121,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -423,7 +423,7 @@ static int stm32_ili9341_initialize(void)
*
* Return:
*
***************************************************************************/
****************************************************************************/
void board_lcd_uninitialize(void)
{
@ -448,7 +448,7 @@ void board_lcd_uninitialize(void)
* Return:
* Reference to the LCD object if exist otherwise NULL
*
***************************************************************************/
****************************************************************************/
FAR struct lcd_dev_s *board_lcd_getdev(int lcddev)
{

View File

@ -122,7 +122,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -118,7 +118,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -122,7 +122,7 @@ extern uint32_t _etext;
* function defintion only provides the 'contract' between application
* specific C++ code and platform-specific toolchain support
*
***************************************************************************/
****************************************************************************/
void up_cxxinitialize(void)
{

View File

@ -59,7 +59,7 @@
****************************************************************************/
/****************************************************************************
* Global Functions
* Public Functions
****************************************************************************/
/****************************************************************************

View File

@ -1,4 +1,4 @@
/***************************************************************************
/****************************************************************************
* configs/z16f2800100zcog/src/z16f_lowinit.c
*
* Copyright (C) 2008, 2014 Gregory Nutt. All rights reserved.
@ -33,25 +33,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Included Files
***************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include "chip/chip.h"
/***************************************************************************
/****************************************************************************
* Pre-processor Definitions
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Private Functions
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Name: z16f_gpioinit
*
* Description:
@ -59,7 +59,7 @@
* are set in the associated device drivers (such as UART, SPI, I2C,
* etc.) and must be preserved.
*
***************************************************************************/
****************************************************************************/
static void z16f_gpioinit(void)
{
@ -84,9 +84,9 @@ static void z16f_gpioinit(void)
putreg8(getreg8(Z16F_GPIOC_DD) | 0x01, Z16F_GPIOC_DD);
}
/***************************************************************************
/****************************************************************************
* Public Functions
***************************************************************************/
****************************************************************************/
void z16f_lowinit(void)
{

View File

@ -59,7 +59,7 @@
****************************************************************************/
/****************************************************************************
* Global Functions
* Public Functions
****************************************************************************/
/****************************************************************************

View File

@ -1,4 +1,4 @@
/***************************************************************************
/****************************************************************************
* configs/z8encore000zco/src/z8_lowinit.c
*
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
@ -33,31 +33,31 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Included Files
***************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include "chip/chip.h"
/***************************************************************************
/****************************************************************************
* Pre-processor Definitions
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Private Functions
***************************************************************************/
****************************************************************************/
static void z8_gpioinit(void)
{
}
/***************************************************************************
/****************************************************************************
* Public Functions
***************************************************************************/
****************************************************************************/
void z8_lowinit(void)
{

View File

@ -1,4 +1,4 @@
/***************************************************************************
/****************************************************************************
* configs/z8f64200100kit/src/z8_lowinit.c
*
* Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
@ -33,31 +33,31 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Included Files
***************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
#include "chip/chip.h"
/***************************************************************************
/****************************************************************************
* Pre-processor Definitions
***************************************************************************/
****************************************************************************/
/***************************************************************************
/****************************************************************************
* Private Functions
***************************************************************************/
****************************************************************************/
static void z8_gpioinit(void)
{
}
/***************************************************************************
/****************************************************************************
* Public Functions
***************************************************************************/
****************************************************************************/
void z8_lowinit(void)
{

View File

@ -427,7 +427,7 @@ static uint16_t spi_send(FAR struct spi_dev_s *dev, uint16_t wd)
return regval;
}
/*************************************************************************
/****************************************************************************
* Name: spi_sndblock
*
* Description: