diff options
Diffstat (limited to 'hal/uart.hpp')
-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 096ac7b..0be5835 100644 --- a/hal/uart.hpp +++ b/hal/uart.hpp @@ -43,8 +43,8 @@ namespace uart tx_empty = 1<<4, }; - std::queue<uint8_t> rx_buffer[devices_count]; - std::queue<uint8_t> tx_buffer[devices_count]; + std::queue<uint8_t> _rx_buffer[devices_count]; + std::queue<uint8_t> _tx_buffer[devices_count]; template<unsigned dev> void initialize(); |