Files
MuditaOS/module-bsp/bsp/key_to_cstr.cpp
Adam Dobrowolski cc02ffffbb [MOS-258] System profile util works with separate rtt
Profiling Move RTT handling to interfacing library
Library for msgpack sink
magic enum updated
performance monitor fixups
2022-04-07 11:32:49 +02:00

8 lines
165 B
C++

#include <magic_enum.hpp>
#include "hal/key_input/KeyEventDefinitions.hpp"
const char *c_str(bsp::KeyCodes code)
{
return magic_enum::enum_name(code).data();
}