[Glacier][Zion] Add a fix sized string builder to allow non-alloc debug.

This commit is contained in:
Drew Galbraith 2023-11-09 09:07:09 -08:00
parent 601f29c324
commit 8d10f19312
5 changed files with 62 additions and 3 deletions

View file

@ -5,6 +5,6 @@
#include "debug/debug.h"
z_err_t Debug(ZDebugReq* req) {
dbgln("[Debug] {}", req->message);
dbgln_large("[Debug] {}", req->message);
return glcr::OK;
}