16 lines
211 B
C
Raw Normal View History

2025-04-03 20:55:28 +02:00
#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;