blob: 0f2795f65bdea9ff6f5a80d7fa2c560947d5163f [file] [log] [blame]
#include "system_status.h"
#include <cinttypes>
#include "pw_string/string_builder.h"
namespace system_status {
const char* GetStatusString(unsigned led_state) {
pw::StringBuffer<64> sb;
sb << "[SystemStatus] ";
sb.Format("LED: %02u", led_state);
return sb.data();
}
} // namespace system_status