System info & network

This commit is contained in:
2023-09-26 19:40:16 +02:00
commit 504ba77654
89 changed files with 39577 additions and 0 deletions

20
code/debug/log_viewer.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef _PIUMA_LOG_VIEWER_H_
#define _PIUMA_LOG_VIEWER_H_
#include "logger.h"
struct LogViewer
{
Logger *logger = NULL;
LogId next_id_to_print_on_console = 0;
static LogViewer Init(Logger *logger);
void Print_New_Messages_On_Console();
void Draw_New_Messages_On_GUI();
};
#endif