aboutsummaryrefslogtreecommitdiffstats
path: root/os/io/templates
diff options
context:
space:
mode:
Diffstat (limited to 'os/io/templates')
-rw-r--r--os/io/templates/mac_lld.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/os/io/templates/mac_lld.h b/os/io/templates/mac_lld.h
index 01889aa12..0ded4b690 100644
--- a/os/io/templates/mac_lld.h
+++ b/os/io/templates/mac_lld.h
@@ -46,7 +46,10 @@
* @brief Structure representing a MAC driver.
*/
typedef struct {
-
+ enum {ifStopped = 0,
+ ifStarted} md_state; /**< @brief Interface status.*/
+ Semaphore md_tdsem; /**< Transmit semaphore.*/
+ Semaphore md_rdsem; /**< Receive semaphore.*/
} MACDriver;
/**