UART bugfixes and improvements

This commit is contained in:
2021-09-08 16:10:18 +02:00
parent d92a796705
commit c42eb59d2e
2 changed files with 33 additions and 13 deletions
hal/src/fsfw_hal/linux/uart

@ -4,8 +4,8 @@
UartCookie::UartCookie(object_id_t handlerId, std::string deviceFile, UartModes uartMode,
uint32_t baudrate, size_t maxReplyLen):
handlerId(handlerId), deviceFile(deviceFile), uartMode(uartMode), baudrate(baudrate),
maxReplyLen(maxReplyLen) {
handlerId(handlerId), deviceFile(deviceFile), uartMode(uartMode),
baudrate(baudrate), maxReplyLen(maxReplyLen) {
}
UartCookie::~UartCookie() {}