mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-18 10:58:33 -05:00
Profiling Move RTT handling to interfacing library Library for msgpack sink magic enum updated performance monitor fixups
8 lines
165 B
C++
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();
|
|
}
|