Initial commit

This commit is contained in:
2025-04-03 20:55:28 +02:00
commit d7d9a3567a
7 changed files with 431 additions and 0 deletions

15
include/shell.h Normal file
View File

@ -0,0 +1,15 @@
#pragma once
// SerialShell header
void shell_init();
void shell_echo(bool echo);
void shell_prompt(char* prompt);
void shell_callback(void(*cb)(char*, int));
void shell_loop();
const int IBUF_MAX = 255;