diff options
Diffstat (limited to 'os/io/templates/serial_lld.c')
-rw-r--r-- | os/io/templates/serial_lld.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/os/io/templates/serial_lld.c b/os/io/templates/serial_lld.c index e99c70385..0fbaa3900 100644 --- a/os/io/templates/serial_lld.c +++ b/os/io/templates/serial_lld.c @@ -45,4 +45,25 @@ void sd_lld_init(void) { }
+/**
+ * @brief Low level serial driver configuration and (re)start.
+ *
+ * @param[in] sdp pointer to a @p SerialDriver object
+ * @param[in] config the architecture-dependent serial driver configuration
+ */
+void sd_lld_start(SerialDriver *sdp, const SerialDriverConfig *config) {
+
+}
+
+/**
+ * @brief Low level serial driver stop.
+ * @details De-initializes the USART, stops the associated clock, resets the
+ * interrupt vector.
+ *
+ * @param[in] sd pointer to a @p SerialDriver object
+ */
+void sd_lld_stop(SerialDriver *sdp) {
+
+}
+
/** @} */
|