mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-12 01:25:59 +00:00
16 lines
228 B
C++
16 lines
228 B
C++
#include <sta/bus/uart/uart.hpp>
|
|
|
|
namespace sta
|
|
{
|
|
UART::UART(Mutex * mutex)
|
|
: Interface{mutex}
|
|
{
|
|
|
|
}
|
|
|
|
const UARTSettings & UART::settings()
|
|
{
|
|
return settings_;
|
|
}
|
|
} // namespace sta
|