aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates/pal_lld.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/templates/pal_lld.h')
-rw-r--r--os/hal/templates/pal_lld.h12
1 files changed, 6 insertions, 6 deletions
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.