|
| 1 | +/* |
| 2 | + * Copyright (c) 2009-2012, Fabian Greif |
| 3 | + * Copyright (c) 2010, Martin Rosekeit |
| 4 | + * Copyright (c) 2011, Georgi Grinshpun |
| 5 | + * Copyright (c) 2011, 2013-2017, Niklas Hauser |
| 6 | + * Copyright (c) 2012, Sascha Schade |
| 7 | + * Copyright (c) 2013, 2016, Kevin Läufer |
| 8 | + * Copyright (c) 2021, Raphael Lehmann |
| 9 | + * |
| 10 | + * This file is part of the modm project. |
| 11 | + * |
| 12 | + * This Source Code Form is subject to the terms of the Mozilla Public |
| 13 | + * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 14 | + * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 15 | + */ |
| 16 | +// ---------------------------------------------------------------------------- |
| 17 | + |
| 18 | +#pragma once |
| 19 | + |
| 20 | +#include <freertos/FreeRTOS.h> |
| 21 | +#include <freertos/queue.h> |
| 22 | +#include <modm/architecture/interface/uart.hpp> |
| 23 | +#include "uart_base.hpp" |
| 24 | + |
| 25 | +namespace modm::platform |
| 26 | +{ |
| 27 | + |
| 28 | +/** |
| 29 | + * Universal asynchronous receiver transmitter (implementation based on FreeRTOS queues) |
| 30 | + * |
| 31 | + * @author Kevin Laeufer |
| 32 | + * @author Niklas Hauser |
| 33 | + * @author Dima Barsky |
| 34 | + * @ingroup modm_platform_uart |
| 35 | + * @{ |
| 36 | + */ |
| 37 | +template <size_t SIZE> |
| 38 | +class FreeRtosBuffer |
| 39 | +{ |
| 40 | + StaticQueue_t queueStructure; |
| 41 | + uint8_t storage[SIZE]; |
| 42 | +public: |
| 43 | + QueueHandle_t queue = xQueueCreateStatic(sizeof(storage), 1, storage, &queueStructure); |
| 44 | +}; |
| 45 | + |
| 46 | +template <size_t SIZE> |
| 47 | +class UartRxBufferFreeRtos : public modm::Uart::RxBuffer, public FreeRtosBuffer<SIZE>{}; |
| 48 | + |
| 49 | +template <size_t SIZE> |
| 50 | +class UartTxBufferFreeRtos : public modm::Uart::TxBuffer, public FreeRtosBuffer<SIZE>{}; |
| 51 | +/// @} |
| 52 | + |
| 53 | +/// @cond |
| 54 | +template< class Hal, class... Buffers> |
| 55 | +class BufferedUart; |
| 56 | + |
| 57 | +template<size_t SIZE, class Hal, class... Buffers> |
| 58 | +class BufferedUart<Hal, UartTxBufferFreeRtos<SIZE>, Buffers...>: public BufferedUart<Hal, Buffers...> |
| 59 | +{ |
| 60 | + template< class Hal_, class... Buffers_> friend class BufferedUart; |
| 61 | + using Parent = BufferedUart<Hal, Buffers...>; |
| 62 | + static_assert(not Parent::TxBufferSize, "BufferedUart accepts at most one TxBuffer type"); |
| 63 | + static inline UartTxBufferFreeRtos<SIZE> txBuffer; |
| 64 | + |
| 65 | + static bool |
| 66 | + InterruptCallback(bool first) |
| 67 | + { |
| 68 | + BaseType_t xHigherPriorityTaskWoken{false}; |
| 69 | + if constexpr (Parent::RxBufferSize) |
| 70 | + xHigherPriorityTaskWoken = Parent::InterruptCallback(false); |
| 71 | + |
| 72 | + if (Hal::isTransmitRegisterEmpty()) |
| 73 | + { |
| 74 | + if (xQueueIsQueueEmptyFromISR(txBuffer.queue)) |
| 75 | + // transmission finished, disable TxEmpty interrupt |
| 76 | + Hal::disableInterrupt(Hal::Interrupt::TxEmpty); |
| 77 | + else |
| 78 | + { |
| 79 | + uint8_t data; |
| 80 | + xQueueReceiveFromISR(txBuffer.queue, &data, &xHigherPriorityTaskWoken); |
| 81 | + Hal::write(data); |
| 82 | + } |
| 83 | + } |
| 84 | + if (first) |
| 85 | + { |
| 86 | + Hal::acknowledgeInterruptFlags(Hal::InterruptFlag::OverrunError); |
| 87 | + portYIELD_FROM_ISR(xHigherPriorityTaskWoken); |
| 88 | + } |
| 89 | + return xHigherPriorityTaskWoken; |
| 90 | + } |
| 91 | + |
| 92 | +public: |
| 93 | + static constexpr size_t TxBufferSize = SIZE; |
| 94 | + |
| 95 | + template< class SystemClock, baudrate_t baudrate, percent_t tolerance=pct(1) > |
| 96 | + static inline void |
| 97 | + initialize(Hal::Parity parity=Hal::Parity::Disabled, Hal::WordLength length=Hal::WordLength::Bit8) |
| 98 | + { |
| 99 | + Parent::template initialize<SystemClock, baudrate, tolerance>(parity, length); |
| 100 | + Hal::InterruptCallback = InterruptCallback; |
| 101 | + } |
| 102 | + |
| 103 | + static bool |
| 104 | + write(uint8_t data) |
| 105 | + { |
| 106 | + if (transmitBufferSize() == 0 and Hal::isTransmitRegisterEmpty()) |
| 107 | + Hal::write(data); |
| 108 | + else |
| 109 | + { |
| 110 | + if (not xQueueSend(txBuffer.queue, &data, 0)) return false; |
| 111 | + // Disable interrupts while enabling the transmit interrupt |
| 112 | + atomic::Lock lock; |
| 113 | + // Transmit Data Register Empty Interrupt Enable |
| 114 | + Hal::enableInterrupt(Hal::Interrupt::TxEmpty); |
| 115 | + } |
| 116 | + return true; |
| 117 | + } |
| 118 | + |
| 119 | + static std::size_t |
| 120 | + write(const uint8_t *data, std::size_t length) |
| 121 | + { |
| 122 | + std::size_t count{0}; |
| 123 | + for (; count < length; ++count) if (not write(*data++)) break; |
| 124 | + return count; |
| 125 | + } |
| 126 | + |
| 127 | + static void |
| 128 | + writeBlocking(uint8_t data) |
| 129 | + { |
| 130 | + if (transmitBufferSize() == 0 and Hal::isTransmitRegisterEmpty()) |
| 131 | + Hal::write(data); |
| 132 | + else |
| 133 | + { |
| 134 | + xQueueSend(txBuffer.queue, &data, portMAX_DELAY); |
| 135 | + // Disable interrupts while enabling the transmit interrupt |
| 136 | + atomic::Lock lock; |
| 137 | + // Transmit Data Register Empty Interrupt Enable |
| 138 | + Hal::enableInterrupt(Hal::Interrupt::TxEmpty); |
| 139 | + } |
| 140 | + } |
| 141 | + |
| 142 | + static void |
| 143 | + writeBlocking(const uint8_t *data, std::size_t length) |
| 144 | + { |
| 145 | + while (length-- != 0) writeBlocking(*data++); |
| 146 | + } |
| 147 | + |
| 148 | + static void |
| 149 | + flushWriteBuffer() { while(not isWriteFinished()); } |
| 150 | + |
| 151 | + bool |
| 152 | + isWriteFinished() { return transmitBufferSize() == 0 and Hal::isTransmitRegisterEmpty(); } |
| 153 | + |
| 154 | + static std::size_t |
| 155 | + transmitBufferSize() { return uxQueueMessagesWaiting(txBuffer.queue); } |
| 156 | + |
| 157 | + std::size_t |
| 158 | + discardTransmitBuffer() |
| 159 | + { |
| 160 | + // disable interrupt since buffer will be cleared |
| 161 | + Hal::disableInterrupt(Hal::Interrupt::TxEmpty); |
| 162 | + std::size_t count = transmitBufferSize(); |
| 163 | + xQueueReset(txBuffer.queue); |
| 164 | + return count; |
| 165 | + } |
| 166 | +}; |
| 167 | + |
| 168 | +template<size_t SIZE, class Hal, class... Buffers> |
| 169 | +class BufferedUart<Hal, UartRxBufferFreeRtos<SIZE>, Buffers...>: public BufferedUart<Hal, Buffers...> |
| 170 | +{ |
| 171 | + template< class Hal_, class... Buffers_> friend class BufferedUart; |
| 172 | + using Parent = BufferedUart<Hal, Buffers...>; |
| 173 | + static_assert(not Parent::RxBufferSize, "BufferedUart accepts at most one RxBuffer type"); |
| 174 | + static inline UartRxBufferFreeRtos<SIZE> rxBuffer; |
| 175 | + |
| 176 | + static bool |
| 177 | + InterruptCallback(bool first) |
| 178 | + { |
| 179 | + BaseType_t xHigherPriorityTaskWoken{false}; |
| 180 | + if constexpr (Parent::TxBufferSize) |
| 181 | + xHigherPriorityTaskWoken = Parent::InterruptCallback(false); |
| 182 | + |
| 183 | + if (Hal::isReceiveRegisterNotEmpty()) |
| 184 | + { |
| 185 | + uint8_t data; |
| 186 | + Hal::read(data); |
| 187 | + xQueueSendFromISR(rxBuffer.queue, &data, &xHigherPriorityTaskWoken); |
| 188 | + } |
| 189 | + if (first) |
| 190 | + { |
| 191 | + Hal::acknowledgeInterruptFlags(Hal::InterruptFlag::OverrunError); |
| 192 | + portYIELD_FROM_ISR (xHigherPriorityTaskWoken); |
| 193 | + } |
| 194 | + return xHigherPriorityTaskWoken; |
| 195 | + } |
| 196 | + |
| 197 | +public: |
| 198 | + static constexpr size_t RxBufferSize = SIZE; |
| 199 | + |
| 200 | + template< class SystemClock, baudrate_t baudrate, percent_t tolerance=pct(1) > |
| 201 | + static inline void |
| 202 | + initialize(Hal::Parity parity=Hal::Parity::Disabled, Hal::WordLength length=Hal::WordLength::Bit8) |
| 203 | + { |
| 204 | + Parent::template initialize<SystemClock, baudrate, tolerance>(parity, length); |
| 205 | + Hal::InterruptCallback = InterruptCallback; |
| 206 | + Hal::enableInterrupt(Hal::Interrupt::RxNotEmpty); |
| 207 | + } |
| 208 | + |
| 209 | + static bool |
| 210 | + read(uint8_t &data, TickType_t timeout=portMAX_DELAY) |
| 211 | + { return bool(xQueueReceive(rxBuffer.queue, &data, timeout)); } |
| 212 | + |
| 213 | + static std::size_t |
| 214 | + read(uint8_t *buffer, std::size_t length, TickType_t timeout=0) |
| 215 | + { |
| 216 | + std::size_t count{0}; |
| 217 | + for (; count < length; ++count) |
| 218 | + if (not xQueueReceive(rxBuffer.queue, buffer++, timeout)) |
| 219 | + break; |
| 220 | + return count; |
| 221 | + } |
| 222 | + |
| 223 | + static std::size_t |
| 224 | + receiveBufferSize() { return uxQueueMessagesWaiting(rxBuffer.queue); } |
| 225 | + |
| 226 | + static std::size_t |
| 227 | + discardReceiveBuffer() |
| 228 | + { |
| 229 | + std::size_t count = 0; |
| 230 | + uint8_t data; |
| 231 | + while(receiveBufferSize()) |
| 232 | + { |
| 233 | + ++count; |
| 234 | + xQueueReceive(rxBuffer.queue, &data, 0); |
| 235 | + } |
| 236 | + return count; |
| 237 | + } |
| 238 | +}; |
| 239 | +/// @endcond |
| 240 | + |
| 241 | +} |
0 commit comments