aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/include')
-rw-r--r--os/hal/include/adc.h2
-rw-r--r--os/hal/include/can.h2
-rw-r--r--os/hal/include/hal.h2
-rw-r--r--os/hal/include/mac.h6
-rw-r--r--os/hal/include/mii.h2
-rw-r--r--os/hal/include/mmc_spi.h28
-rw-r--r--os/hal/include/pal.h22
-rw-r--r--os/hal/include/pwm.h2
-rw-r--r--os/hal/include/serial.h4
-rw-r--r--os/hal/include/spi.h2
10 files changed, 36 insertions, 36 deletions
diff --git a/os/hal/include/adc.h b/os/hal/include/adc.h
index 76e83a51a..983fe0f78 100644
--- a/os/hal/include/adc.h
+++ b/os/hal/include/adc.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/include/can.h b/os/hal/include/can.h
index 0e171fee4..b503dd8e3 100644
--- a/os/hal/include/can.h
+++ b/os/hal/include/can.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/include/hal.h b/os/hal/include/hal.h
index 1bdeafe8c..1084baf91 100644
--- a/os/hal/include/hal.h
+++ b/os/hal/include/hal.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/include/mac.h b/os/hal/include/mac.h
index 29381bab3..a180cc4f0 100644
--- a/os/hal/include/mac.h
+++ b/os/hal/include/mac.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.
@@ -57,7 +57,7 @@
/**
* @brief Returns the received frames event source.
- *
+ *
* @param[in] macp pointer to the @p MACDriver object
* @return The pointer to the @p EventSource structure.
*/
@@ -67,7 +67,7 @@
/**
* @brief Writes to a transmit descriptor's stream.
- *
+ *
* @param[in] tdp pointer to a @p MACTransmitDescriptor structure
* @param[in] buf pointer to the buffer containing the data to be written
* @param[in] size number of bytes to be written
diff --git a/os/hal/include/mii.h b/os/hal/include/mii.h
index 937b805ab..bc3b4ff6a 100644
--- a/os/hal/include/mii.h
+++ b/os/hal/include/mii.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/include/mmc_spi.h b/os/hal/include/mmc_spi.h
index e4c3ee157..cc698c3de 100644
--- a/os/hal/include/mmc_spi.h
+++ b/os/hal/include/mmc_spi.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.
@@ -65,7 +65,7 @@
* routines releasing some extra CPU time for the threads with
* lower priority, this may slow down the driver a bit however.
* This option is recommended also if the SPI driver does not
- * use a DMA channel and heavily loads the CPU.
+ * use a DMA channel and heavily loads the CPU.
*/
#if !defined(MMC_NICE_WAITING) || defined(__DOXYGEN__)
#define MMC_NICE_WAITING TRUE
@@ -73,14 +73,14 @@
/**
* @brief Number of positive insertion queries before generating the
- * insertion event.
+ * insertion event.
*/
#if !defined(MMC_POLLING_INTERVAL) || defined(__DOXYGEN__)
#define MMC_POLLING_INTERVAL 10
#endif
/**
- * @brief Interval, in milliseconds, between insertion queries.
+ * @brief Interval, in milliseconds, between insertion queries.
*/
#if !defined(MMC_POLLING_DELAY) || defined(__DOXYGEN__)
#define MMC_POLLING_DELAY 10
@@ -138,19 +138,19 @@ typedef struct {
*/
const MMCConfig *mmc_config;
/**
- * @brief SPI driver associated to this MMC driver.
+ * @brief SPI driver associated to this MMC driver.
*/
SPIDriver *mmc_spip;
/**
- * @brief SPI low speed configuration used during initialization.
+ * @brief SPI low speed configuration used during initialization.
*/
const SPIConfig *mmc_lscfg;
/**
- * @brief SPI high speed configuration used during transfers.
+ * @brief SPI high speed configuration used during transfers.
*/
const SPIConfig *mmc_hscfg;
/**
- * @brief Write protect status query function.
+ * @brief Write protect status query function.
*/
mmcquery_t mmc_is_protected;
/**
@@ -158,19 +158,19 @@ typedef struct {
*/
mmcquery_t mmc_is_inserted;
/**
- * @brief Card insertion event source.
+ * @brief Card insertion event source.
*/
EventSource mmc_inserted_event;
/**
- * @brief Card removal event source.
+ * @brief Card removal event source.
*/
EventSource mmc_removed_event;
/**
- * @brief MMC insertion polling timer.
+ * @brief MMC insertion polling timer.
*/
VirtualTimer mmc_vt;
/**
- * @brief Insertion counter.
+ * @brief Insertion counter.
*/
uint_fast8_t mmc_cnt;
} MMCDriver;
@@ -180,12 +180,12 @@ typedef struct {
/*===========================================================================*/
/**
- * @brief Returns the driver state.
+ * @brief Returns the driver state.
*/
#define mmcGetDriverState(mmcp) ((mmcp)->mmc_state)
/**
- * @brief Returns the write protect status.
+ * @brief Returns the write protect status.
*/
#define mmcIsWriteProtected(mmcp) ((mmcp)->mmc_is_protected())
diff --git a/os/hal/include/pal.h b/os/hal/include/pal.h
index 352523021..1ba3ee04d 100644
--- a/os/hal/include/pal.h
+++ b/os/hal/include/pal.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 Bits in a mode word dedicated as mode selector.
* @details The other bits are not defined and may be used as device-specific
- * option bits.
+ * option bits.
*/
#define PAL_MODE_MASK 0xF
@@ -45,12 +45,12 @@
* @brief After reset state.
* @details The state itself is not specified and is architecture dependent,
* it is guaranteed to be equal to the after-reset state. It is
- * usually an input state.
+ * usually an input state.
*/
#define PAL_MODE_RESET 0
/**
- * @brief Safe state for <b>unconnected</b> pads.
+ * @brief Safe state for <b>unconnected</b> pads.
* @details The state itself is not specified and is architecture dependent,
* it may be mapped on @p PAL_MODE_INPUT_PULLUP,
* @p PAL_MODE_INPUT_PULLDOWN or @p PAL_MODE_OUTPUT_PUSHPULL as
@@ -64,7 +64,7 @@
#define PAL_MODE_INPUT 2
/**
- * @brief Input pad with weak pull up resistor.
+ * @brief Input pad with weak pull up resistor.
*/
#define PAL_MODE_INPUT_PULLUP 3
@@ -74,7 +74,7 @@
#define PAL_MODE_INPUT_PULLDOWN 4
/**
- * @brief Analog input mode.
+ * @brief Analog input mode.
*/
#define PAL_MODE_INPUT_ANALOG 5
@@ -145,7 +145,7 @@ typedef struct {
* @details This macro calculates the mask of a bit within a port.
*
* @param[in] n bit position within the port
- * @return The bit mask.
+ * @return The bit mask.
*/
#define PAL_PORT_BIT(n) ((ioportmask_t)(1 << (n)))
@@ -154,7 +154,7 @@ typedef struct {
* @brief Bits group mask helper.
* @details This macro calculates the mask of a bits group.
*
- * @param[in] width group width
+ * @param[in] width group width
* @return The group mask.
*/
#define PAL_GROUP_MASK(width) ((ioportmask_t)(1 << (width)) - 1)
@@ -188,7 +188,7 @@ typedef struct {
*
* @param[in] config pointer to an architecture specific configuration
* structure. This structure is defined in the low level driver
- * header.
+ * header.
*/
#define palInit(config) pal_lld_init(config)
@@ -212,7 +212,7 @@ typedef struct {
* value.
* @note The default implementation always return zero and computes the
* parameter eventual side effects.
- *
+ *
* @param[in] port port identifier
* @return The latched logical states.
*/
@@ -302,7 +302,7 @@ typedef struct {
/**
* @brief Reads a group of bits.
- *
+ *
* @param[in] port port identifier
* @param[in] mask group mask, a logical AND is performed on the input
* data
diff --git a/os/hal/include/pwm.h b/os/hal/include/pwm.h
index f736c2e98..9b0043a21 100644
--- a/os/hal/include/pwm.h
+++ b/os/hal/include/pwm.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/include/serial.h b/os/hal/include/serial.h
index 07527d601..e321d5585 100644
--- a/os/hal/include/serial.h
+++ b/os/hal/include/serial.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.
@@ -97,7 +97,7 @@ typedef enum {
} sdstate_t;
/**
- * @brief Structure representing a serial driver.
+ * @brief Structure representing a serial driver.
*/
typedef struct _SerialDriver SerialDriver;
diff --git a/os/hal/include/spi.h b/os/hal/include/spi.h
index 5729aa042..7ff92a04d 100644
--- a/os/hal/include/spi.h
+++ b/os/hal/include/spi.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.