aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/hal_wspi.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/include/hal_wspi.h')
-rw-r--r--os/hal/include/hal_wspi.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/os/hal/include/hal_wspi.h b/os/hal/include/hal_wspi.h
index 3d7a9a1aa..8ba4be5ff 100644
--- a/os/hal/include/hal_wspi.h
+++ b/os/hal/include/hal_wspi.h
@@ -37,7 +37,7 @@
* supported. The LLD can also define additional modes or reorder
* the bit masks in a more convenient way for the underlying
* implementation. It is important however to maintain the same
- * same for the same functionality.
+ * name for the same functionality.
* @{
*/
#define WSPI_CFG_INSTRUCTION_MODE_MASK (7LU << 0LU)
@@ -143,6 +143,24 @@ typedef enum {
} wspistate_t;
/**
+ * @brief Type of a structure representing an WSPI driver.
+ */
+typedef struct hal_wspi_driver WSPIDriver;
+
+/**
+ * @brief Type of a structure representing an WSPI driver configuration.
+ */
+typedef struct hal_wspi_config WSPIConfig;
+
+/**
+ * @brief Type of a WSPI notification callback.
+ *
+ * @param[in] wspip pointer to the @p WSPIDriver object triggering the
+ * callback
+ */
+typedef void (*wspicallback_t)(WSPIDriver *wspip);
+
+/**
* @brief Type of a WSPI command descriptor.
*/
typedef struct {