diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-21 07:24:53 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-21 07:24:53 +0000 |
commit | 157b6f9695e7f72f2d54b231c19cb4045710ed01 (patch) | |
tree | a856d81bf5f173c207510fdeb7367e218f12b3db /os/hal/templates | |
parent | a90a90ffcf0f90b2a4b6c24dc5a60e72652549f1 (diff) | |
download | ChibiOS-157b6f9695e7f72f2d54b231c19cb4045710ed01.tar.gz ChibiOS-157b6f9695e7f72f2d54b231c19cb4045710ed01.tar.bz2 ChibiOS-157b6f9695e7f72f2d54b231c19cb4045710ed01.zip |
Updated license dates.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1646 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/templates')
-rw-r--r-- | os/hal/templates/adc_lld.c | 2 | ||||
-rw-r--r-- | os/hal/templates/adc_lld.h | 10 | ||||
-rw-r--r-- | os/hal/templates/can_lld.c | 6 | ||||
-rw-r--r-- | os/hal/templates/can_lld.h | 6 | ||||
-rw-r--r-- | os/hal/templates/hal_lld.c | 2 | ||||
-rw-r--r-- | os/hal/templates/hal_lld.h | 4 | ||||
-rw-r--r-- | os/hal/templates/halconf.h | 10 | ||||
-rw-r--r-- | os/hal/templates/mac_lld.c | 4 | ||||
-rw-r--r-- | os/hal/templates/mac_lld.h | 4 | ||||
-rw-r--r-- | os/hal/templates/meta/driver.c | 2 | ||||
-rw-r--r-- | os/hal/templates/meta/driver.h | 2 | ||||
-rw-r--r-- | os/hal/templates/meta/driver_lld.c | 2 | ||||
-rw-r--r-- | os/hal/templates/meta/driver_lld.h | 2 | ||||
-rw-r--r-- | os/hal/templates/pal_lld.c | 2 | ||||
-rw-r--r-- | os/hal/templates/pal_lld.h | 12 | ||||
-rw-r--r-- | os/hal/templates/pwm_lld.c | 2 | ||||
-rw-r--r-- | os/hal/templates/pwm_lld.h | 8 | ||||
-rw-r--r-- | os/hal/templates/serial_lld.c | 4 | ||||
-rw-r--r-- | os/hal/templates/serial_lld.h | 2 | ||||
-rw-r--r-- | os/hal/templates/spi_lld.c | 4 | ||||
-rw-r--r-- | os/hal/templates/spi_lld.h | 6 |
21 files changed, 48 insertions, 48 deletions
diff --git a/os/hal/templates/adc_lld.c b/os/hal/templates/adc_lld.c index b0b6d4451..ffe67bc0f 100644 --- a/os/hal/templates/adc_lld.c +++ b/os/hal/templates/adc_lld.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/os/hal/templates/adc_lld.h b/os/hal/templates/adc_lld.h index e4ed953b9..a36fc205f 100644 --- a/os/hal/templates/adc_lld.h +++ b/os/hal/templates/adc_lld.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -51,7 +51,7 @@ /*===========================================================================*/
/**
- * @brief ADC sample data type. + * @brief ADC sample data type.
*/
typedef uint16_t adcsample_t;
@@ -64,14 +64,14 @@ typedef uint16_t adc_channels_num_t; * @brief ADC notification callback type.
*
* @param[in] buffer pointer to the most recent samples data
- * @param[in] n number of buffer rows available starting from @p buffer + * @param[in] n number of buffer rows available starting from @p buffer
*/
typedef void (*adccallback_t)(adcsample_t *buffer, size_t n);
/**
* @brief Conversion group configuration structure.
* @details This implementation-dependent structure describes a conversion
- * operation. + * operation.
*/
typedef struct {
/**
@@ -79,7 +79,7 @@ typedef struct { */
bool_t acg_circular;
/**
- * @brief Number of the analog channels belonging to the conversion group. + * @brief Number of the analog channels belonging to the conversion group.
*/
adc_channels_num_t acg_num_channels;
/* End of the mandatory fields.*/
diff --git a/os/hal/templates/can_lld.c b/os/hal/templates/can_lld.c index 3d3897e3d..65190276d 100644 --- a/os/hal/templates/can_lld.c +++ b/os/hal/templates/can_lld.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -82,11 +82,11 @@ void can_lld_stop(CANDriver *canp) { /**
* @brief Determines whether a frame can be transmitted.
- * + *
* @param[in] canp pointer to the @p CANDriver object
* @return The queue space availability.
* @retval FALSE no space in the transmit queue.
- * @retval TRUE transmit slot available. + * @retval TRUE transmit slot available.
*/
bool_t can_lld_can_transmit(CANDriver *canp) {
diff --git a/os/hal/templates/can_lld.h b/os/hal/templates/can_lld.h index 3543e039d..3049d8a94 100644 --- a/os/hal/templates/can_lld.h +++ b/os/hal/templates/can_lld.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -36,7 +36,7 @@ /**
* @brief This switch defines whether the driver implementation supports
- * a low power switch mode with automatic an wakeup feature. + * a low power switch mode with automatic an wakeup feature.
*/
#define CAN_SUPPORTS_SLEEP TRUE
@@ -47,7 +47,7 @@ /**
* @brief Sleep mode related APIs inclusion switch.
* @note This switch is enforced to @p FALSE if the driver implementation
- * does not support the sleep mode. + * does not support the sleep mode.
*/
#if CAN_SUPPORTS_SLEEP || defined(__DOXYGEN__)
#if !defined(CAN_USE_SLEEP_MODE) || defined(__DOXYGEN__)
diff --git a/os/hal/templates/hal_lld.c b/os/hal/templates/hal_lld.c index 56dc1b88e..8674d4f38 100644 --- a/os/hal/templates/hal_lld.c +++ b/os/hal/templates/hal_lld.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/os/hal/templates/hal_lld.h b/os/hal/templates/hal_lld.h index c5393b522..dc8b3f143 100644 --- a/os/hal/templates/hal_lld.h +++ b/os/hal/templates/hal_lld.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -33,7 +33,7 @@ /*===========================================================================*/
/**
- * @brief Platform name. + * @brief Platform name.
*/
#define PLATFORM_NAME ""
diff --git a/os/hal/templates/halconf.h b/os/hal/templates/halconf.h index dae0c2c76..f58ca677b 100644 --- a/os/hal/templates/halconf.h +++ b/os/hal/templates/halconf.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -29,7 +29,7 @@ */
/*
- * + *
*/
#ifndef _HALCONF_H_
@@ -38,7 +38,7 @@ /*
* Uncomment the following line in order to include a mcu-related
* settings file. This file can be used to include platform specific
- * header files or to override the low level drivers settings. + * header files or to override the low level drivers settings.
*/
/*#include "mcuconf.h"*/
@@ -47,7 +47,7 @@ /*===========================================================================*/
/**
- * @brief Enables the PAL subsystem. + * @brief Enables the PAL subsystem.
*/
#if !defined(CH_HAL_USE_PAL) || defined(__DOXYGEN__)
#define CH_HAL_USE_PAL TRUE
@@ -131,7 +131,7 @@ #endif
/*
- * Default SPI settings overrides (uncomment to override). + * Default SPI settings overrides (uncomment to override).
*/
/*#define SPI_USE_MUTUAL_EXCLUSION TRUE*/
diff --git a/os/hal/templates/mac_lld.c b/os/hal/templates/mac_lld.c index b71d11330..bfe21d65a 100644 --- a/os/hal/templates/mac_lld.c +++ b/os/hal/templates/mac_lld.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -51,7 +51,7 @@ /*===========================================================================*/
/**
- * @brief Low level MAC initialization. + * @brief Low level MAC initialization.
*/
void mac_lld_init(void) {
diff --git a/os/hal/templates/mac_lld.h b/os/hal/templates/mac_lld.h index 05d943084..37b6d0ae9 100644 --- a/os/hal/templates/mac_lld.h +++ b/os/hal/templates/mac_lld.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -53,7 +53,7 @@ #endif
/**
- * @brief Maximum supported frame size. + * @brief Maximum supported frame size.
*/
#if !defined(MAC_BUFFERS_SIZE) || defined(__DOXYGEN__)
#define MAC_BUFFERS_SIZE 1518
diff --git a/os/hal/templates/meta/driver.c b/os/hal/templates/meta/driver.c index e4d6e5748..d688f3626 100644 --- a/os/hal/templates/meta/driver.c +++ b/os/hal/templates/meta/driver.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/os/hal/templates/meta/driver.h b/os/hal/templates/meta/driver.h index 762e54c7c..b3aeb3b0a 100644 --- a/os/hal/templates/meta/driver.h +++ b/os/hal/templates/meta/driver.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/os/hal/templates/meta/driver_lld.c b/os/hal/templates/meta/driver_lld.c index 787ac388d..5d6253339 100644 --- a/os/hal/templates/meta/driver_lld.c +++ b/os/hal/templates/meta/driver_lld.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/os/hal/templates/meta/driver_lld.h b/os/hal/templates/meta/driver_lld.h index 409523cfb..967da13a7 100644 --- a/os/hal/templates/meta/driver_lld.h +++ b/os/hal/templates/meta/driver_lld.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/os/hal/templates/pal_lld.c b/os/hal/templates/pal_lld.c index 3b5f597d0..9a2abb6b2 100644 --- a/os/hal/templates/pal_lld.c +++ b/os/hal/templates/pal_lld.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/os/hal/templates/pal_lld.h b/os/hal/templates/pal_lld.h index 8b8dd9202..b71b9d96e 100644 --- a/os/hal/templates/pal_lld.h +++ b/os/hal/templates/pal_lld.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -58,18 +58,18 @@ typedef struct { } GenericConfig;
/**
- * @brief Width, in bits, of an I/O port. + * @brief Width, in bits, of an I/O port.
*/
#define PAL_IOPORTS_WIDTH 32
/**
* @brief Whole port mask.
- * @brief This macro specifies all the valid bits into a port. + * @brief This macro specifies all the valid bits into a port.
*/
#define PAL_WHOLE_PORT ((ioportmask_t)0xFFFFFFFF)
/**
- * @brief Digital I/O port sized unsigned type. + * @brief Digital I/O port sized unsigned type.
*/
typedef uint32_t ioportmask_t;
@@ -77,7 +77,7 @@ typedef uint32_t ioportmask_t; * @brief Port Identifier.
* @details This type can be a scalar or some kind of pointer, do not make
* any assumption about it, use the provided macros when populating
- * variables of this type. + * variables of this type.
*/
typedef uint32_t ioportid_t;
@@ -227,7 +227,7 @@ typedef uint32_t ioportid_t; * @note The @ref PAL provides a default software implementation of this
* functionality, implement this function if can optimize it by using
* special hardware functionalities or special coding.
- * + *
* @param[in] port port identifier
* @param[in] pad pad number within the port
* @return The logical state.
diff --git a/os/hal/templates/pwm_lld.c b/os/hal/templates/pwm_lld.c index 809a90608..c37db97ea 100644 --- a/os/hal/templates/pwm_lld.c +++ b/os/hal/templates/pwm_lld.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/os/hal/templates/pwm_lld.h b/os/hal/templates/pwm_lld.h index 83c075510..76a691a55 100644 --- a/os/hal/templates/pwm_lld.h +++ b/os/hal/templates/pwm_lld.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -37,7 +37,7 @@ /*===========================================================================*/
/**
- * @brief Number of PWM channels per PWM driver. + * @brief Number of PWM channels per PWM driver.
*/
#if !defined(PWM_CHANNELS) || defined(__DOXYGEN__)
#define PWM_CHANNELS 1
@@ -52,12 +52,12 @@ /*===========================================================================*/
/**
- * @brief PWM channel type. + * @brief PWM channel type.
*/
typedef uint8_t pwmchannel_t;
/**
- * @brief PWM counter type. + * @brief PWM counter type.
*/
typedef uint16_t pwmcnt_t;
diff --git a/os/hal/templates/serial_lld.c b/os/hal/templates/serial_lld.c index 7fbe7f9d1..52e1881e7 100644 --- a/os/hal/templates/serial_lld.c +++ b/os/hal/templates/serial_lld.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -57,7 +57,7 @@ static const SerialConfig default_config = { /*===========================================================================*/
/**
- * @brief Low level serial driver initialization. + * @brief Low level serial driver initialization.
*/
void sd_lld_init(void) {
diff --git a/os/hal/templates/serial_lld.h b/os/hal/templates/serial_lld.h index a9dbb3c1a..72a0063be 100644 --- a/os/hal/templates/serial_lld.h +++ b/os/hal/templates/serial_lld.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/os/hal/templates/spi_lld.c b/os/hal/templates/spi_lld.c index 83862dd0a..769e13b51 100644 --- a/os/hal/templates/spi_lld.c +++ b/os/hal/templates/spi_lld.c @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -51,7 +51,7 @@ /*===========================================================================*/
/**
- * @brief Low level SPI driver initialization. + * @brief Low level SPI driver initialization.
*/
void spi_lld_init(void) {
diff --git a/os/hal/templates/spi_lld.h b/os/hal/templates/spi_lld.h index f5046f147..11409d9eb 100644 --- a/os/hal/templates/spi_lld.h +++ b/os/hal/templates/spi_lld.h @@ -1,5 +1,5 @@ /*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -47,7 +47,7 @@ /*===========================================================================*/
/**
- * @brief Driver configuration structure. + * @brief Driver configuration structure.
*/
typedef struct {
@@ -58,7 +58,7 @@ typedef struct { */
typedef struct {
/**
- * @brief Driver state. + * @brief Driver state.
*/
spistate_t spd_state;
#if SPI_USE_MUTUAL_EXCLUSION || defined(__DOXYGEN__)
|