aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates/hal_sio_lld.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@110e8d01-0319-4d1e-a829-52ad28d1bb01>2018-09-28 09:10:43 +0000
committergdisirio <gdisirio@110e8d01-0319-4d1e-a829-52ad28d1bb01>2018-09-28 09:10:43 +0000
commite53c5fbf6c8928e416490fa668089541883d40f4 (patch)
treebaed96eea0f31673cdc98738d0a93b4eab0e3fd3 /os/hal/templates/hal_sio_lld.c
parent4b23f3b361221f5c57cef31bbf80c70372ab4d35 (diff)
downloadChibiOS-e53c5fbf6c8928e416490fa668089541883d40f4.tar.gz
ChibiOS-e53c5fbf6c8928e416490fa668089541883d40f4.tar.bz2
ChibiOS-e53c5fbf6c8928e416490fa668089541883d40f4.zip
Improvements to SIO driver.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12301 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal/templates/hal_sio_lld.c')
-rw-r--r--os/hal/templates/hal_sio_lld.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/os/hal/templates/hal_sio_lld.c b/os/hal/templates/hal_sio_lld.c
index ea425709c..96b229106 100644
--- a/os/hal/templates/hal_sio_lld.c
+++ b/os/hal/templates/hal_sio_lld.c
@@ -112,53 +112,6 @@ void sio_lld_stop(SIODriver *siop) {
}
}
-
-/**
- * @brief Reads data from the RX FIFO.
- * @details This function is non-blocking, data is read if present and the
- * effective amount is returned.
- * @note This function can be called from any context but it is meant to
- * be called from the @p rxne_cb callback handler.
- *
- * @param[in] siop pointer to the @p SIODriver object
- * @param[in] buffer buffer for the received data
- * @param[in] size maximum number of bytes to read
- * @return The number of received bytes.
- *
- * @notapi
- */
-size_t sio_lld_read(SIODriver *siop, uint8_t *buffer, size_t size) {
-
- (void)siop;
- (void)buffer;
- (void)size;
-
- return (size_t)0;
-}
-
-/**
- * @brief Writes data into the TX FIFO.
- * @details This function is non-blocking, data is written if there is space
- * in the FIFO and the effective amount is returned.
- * @note This function can be called from any context but it is meant to
- * be called from the @p rxne_cb callback handler.
- *
- * @param[in] siop pointer to the @p SIODriver object
- * @param[out] buffer buffer containing the data to be transmitted
- * @param[in] size maximum number of bytes to read
- * @return The number of transmitted bytes.
- *
- * @notapi
- */
-size_t sio_lld_write(SIODriver *siop, const uint8_t *buffer, size_t size) {
-
- (void)siop;
- (void)buffer;
- (void)size;
-
- return (size_t)0;
-}
-
/**
* @brief Control operation on a serial port.
*