mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-21 04:18:08 -05:00
Profiling Move RTT handling to interfacing library Library for msgpack sink magic enum updated performance monitor fixups
18 lines
391 B
C++
18 lines
391 B
C++
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/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
|