diff options
Diffstat (limited to 'os/hal/templates/spi_lld.h')
-rw-r--r-- | os/hal/templates/spi_lld.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/os/hal/templates/spi_lld.h b/os/hal/templates/spi_lld.h index 11409d9eb..67ca25b02 100644 --- a/os/hal/templates/spi_lld.h +++ b/os/hal/templates/spi_lld.h @@ -48,13 +48,17 @@ /**
* @brief Driver configuration structure.
+ * @note Implementations may extend this structure to contain more,
+ * architecture dependent, fields.
*/
typedef struct {
} SPIConfig;
/**
- * @brief Structure representing a SPI driver.
+ * @brief Structure representing an SPI driver.
+ * @note Implementations may extend this structure to contain more,
+ * architecture dependent, fields.
*/
typedef struct {
/**
|