diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-19 11:59:36 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-19 11:59:36 +0000 |
commit | 94007010446b75548a41b3979fa0bdc4bf66a08c (patch) | |
tree | 0a9bac3e4eaae5c8ece6a5015e1f8ef1fb06b4af /os/io/templates/serial_lld.c | |
parent | f6b7b4d8448449097e44b13cff386fde5b292692 (diff) | |
download | ChibiOS-94007010446b75548a41b3979fa0bdc4bf66a08c.tar.gz ChibiOS-94007010446b75548a41b3979fa0bdc4bf66a08c.tar.bz2 ChibiOS-94007010446b75548a41b3979fa0bdc4bf66a08c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1080 35acf78f-673a-0410-8e92-d51de3d6d3f4
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) {
+
+}
+
/** @} */
|