diff options
author | Nao Pross <naopross@thearcway.org> | 2018-05-05 18:45:27 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2018-05-05 18:45:27 +0200 |
commit | 8668d0b74f541843704d87b7ba76bfed2ff95ddb (patch) | |
tree | 103d4f97b138365c20beb6568b274d10e38e2eab /hal/uart.hpp | |
parent | Add gpio::is_set() to read from _latch register, update command parsing (diff) | |
download | SAMLiquidSmoke-8668d0b74f541843704d87b7ba76bfed2ff95ddb.tar.gz SAMLiquidSmoke-8668d0b74f541843704d87b7ba76bfed2ff95ddb.zip |
Fix comments
Diffstat (limited to '')
-rw-r--r-- | hal/uart.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hal/uart.hpp b/hal/uart.hpp index 65062f6..c3807c2 100644 --- a/hal/uart.hpp +++ b/hal/uart.hpp @@ -51,7 +51,7 @@ namespace uart std::queue<uint8_t> _rx_buffer[devices_count]; std::queue<uint8_t> _tx_buffer[devices_count]; - // the following functions have been inlined + // the following commented functions have been inlined // template<unsigned dev> // std::queue<uint8_t>& rx_buffer(); @@ -67,7 +67,7 @@ namespace uart void set_baudrate(long baud); #endif - // the following functions have been inlined + // the following commented functions have been inlined // template<unsigned dev> // void echo(bool enabled); |