diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-30 08:49:10 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-30 08:49:10 +0000 |
commit | 49c40ba106e8fbea8e67157591eab7bf0c9e9a01 (patch) | |
tree | dfd145ca9a7d70960de75169b124a4b2d8b99193 /os/io/platforms/AVR | |
parent | 576d80eb6337c518374ed4ff4c54ff544708a98a (diff) | |
download | ChibiOS-49c40ba106e8fbea8e67157591eab7bf0c9e9a01.tar.gz ChibiOS-49c40ba106e8fbea8e67157591eab7bf0c9e9a01.tar.bz2 ChibiOS-49c40ba106e8fbea8e67157591eab7bf0c9e9a01.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1136 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/io/platforms/AVR')
-rw-r--r-- | os/io/platforms/AVR/platform.dox | 2 | ||||
-rw-r--r-- | os/io/platforms/AVR/serial_lld.h | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/os/io/platforms/AVR/platform.dox b/os/io/platforms/AVR/platform.dox index d41c0aacf..05eb4d76e 100644 --- a/os/io/platforms/AVR/platform.dox +++ b/os/io/platforms/AVR/platform.dox @@ -25,7 +25,7 @@ */
/**
- * @defgroup AVR_SERIAL USART Support
+ * @defgroup AVR_SERIAL AVR USART Support
* @brief USART support.
* @details The serial driver supports both the AVR USARTs in asynchronous
* mode.
diff --git a/os/io/platforms/AVR/serial_lld.h b/os/io/platforms/AVR/serial_lld.h index 98e00a841..c1889f8b5 100644 --- a/os/io/platforms/AVR/serial_lld.h +++ b/os/io/platforms/AVR/serial_lld.h @@ -124,13 +124,9 @@ struct _serial_driver_data { #define UBRR(b) ((F_CPU / (b << 4)) - 1)
/**
- * @brief Generic Serial Driver static initializer.
+ * @brief AVR Serial Driver configuration structure.
* @details An instance of this structure must be passed to @p sdStart()
* in order to configure and start a serial driver operations.
- *
- * @note This structure content is architecture dependent, each driver
- * implementation defines its own version and the custom static
- * initializers.
*/
typedef struct {
uint16_t brr;
|