mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-30 03:26:19 -04:00
18 lines
403 B
C++
18 lines
403 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#include "sink/RTTSink.hpp"
|
|
#include <cassert>
|
|
|
|
namespace sink
|
|
{
|
|
RTT::RTT(rtt_traits t) : trait(t)
|
|
{
|
|
assert(false && "no rtt on linux - not implemented");
|
|
}
|
|
|
|
void RTT::put(const char *data, size_t size)
|
|
{}
|
|
|
|
} // namespace sink
|