diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-10-24 10:09:28 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-10-24 10:09:28 +0000 |
commit | fb68f0d51775b7e0bafa82fa67573e652babb6a6 (patch) | |
tree | 98788291c76294f69bc497d890e82d56fde226bf /os/io/templates | |
parent | 09194e6f2232390b16ed37c65cf750bd47bc4bf4 (diff) | |
download | ChibiOS-fb68f0d51775b7e0bafa82fa67573e652babb6a6.tar.gz ChibiOS-fb68f0d51775b7e0bafa82fa67573e652babb6a6.tar.bz2 ChibiOS-fb68f0d51775b7e0bafa82fa67573e652babb6a6.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1251 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/io/templates')
-rw-r--r-- | os/io/templates/spi_lld.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/io/templates/spi_lld.h b/os/io/templates/spi_lld.h index 26a70d0a4..37f14781e 100644 --- a/os/io/templates/spi_lld.h +++ b/os/io/templates/spi_lld.h @@ -50,9 +50,9 @@ * @brief Driver state machine possible states. */
typedef enum {
- SPI_UNINIT = 0,//!< SPI_UNINIT
- SPI_IDLE = 1, //!< SPI_IDLE
- SPI_ACTIVE = 2 //!< SPI_ACTIVE
+ SPI_UNINIT = 0,
+ SPI_IDLE = 1,
+ SPI_ACTIVE = 2
} spistate_t;
/**
@@ -85,7 +85,7 @@ typedef struct { #endif
#endif /* SPI_USE_MUTUAL_EXCLUSION */
/**
- * Current configuration data.
+ * @brief Current configuration data.
*/
const SPIConfig *spd_config;
/* End of the mandatory fields.*/
|