ether2ser 0.1.0
Ethernet <-> synchronous V.24 bridge firmware for RP2040 + W5500
Loading...
Searching...
No Matches
cli_commands.h
Go to the documentation of this file.
1/*
2 * ether2ser — Ethernet <-> synchronous V.24 (RS-232/V.28) bridge
3 *
4 * File: src/system/cli_commands.h
5 * Purpose: CLI command handler declarations.
6 *
7 * SPDX-License-Identifier: Apache-2.0
8 *
9 * Copyright (c) 2026 Florian <f.leuze@outlook.de>
10 */
11
12#ifndef CLI_COMMANDS_H
13#define CLI_COMMANDS_H
14
15// Related headers
16
17// Standard library headers
18
19// Project Headers
20
21// Generated headers
22
27void handle_cli_line(const char* line);
28
34const char* get_command_name(int index);
35
36#endif /* CLI_COMMANDS_H */
void handle_cli_line(const char *line)
Parse and execute one CLI input line.
const char * get_command_name(int index)
Return command name by table index.