ether2ser 0.1.0
Ethernet <-> synchronous V.24 bridge firmware for RP2040 + W5500
Loading...
Searching...
No Matches
cli_usb_cdc.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_usb_cdc.h
5 * Purpose: Interface for USB CDC CLI polling and line handling.
6 *
7 * SPDX-License-Identifier: Apache-2.0
8 *
9 * Copyright (c) 2026 Florian <f.leuze@outlook.de>
10 */
11
12#ifndef SYSTEM_CLI_USB_CDC_H
13#define SYSTEM_CLI_USB_CDC_H
14
15// Related headers
16
17// Standard library headers
18
19// Project Headers
20
21// Generated headers
22
26void cli_poll(void);
27
32void handle_cli_line(const char* line);
33
34#endif /* SYSTEM_CLI_USB_CDC_H */
void handle_cli_line(const char *line)
Process one CLI line.
void cli_poll(void)
Poll USB CDC for CLI input, echo, and emit line events.
Definition cli_usb_cdc.c:40