ether2ser 0.1.0
Ethernet <-> synchronous V.24 bridge firmware for RP2040 + W5500
Loading...
Searching...
No Matches
baudrate_monitor.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/baudrate_monitor.h
5 * Purpose: RXC baudrate estimator interface.
6 *
7 * SPDX-License-Identifier: Apache-2.0
8 *
9 * Copyright (c) 2026 Florian <f.leuze@outlook.de>
10 */
11
12#ifndef BAUDRATE_MONITOR_H
13#define BAUDRATE_MONITOR_H
14
15// Related headers
16
17// Standard library headers
18
19// Project Headers
20#include "platform/pinmap.h"
21
22// Generated headers
23
27#define BAUDRATE_MONITOR_PIN V24_RXC
28
34// void baudrate_estimator_poll(V24_PIN_T pin);
35
42
43#endif /* BAUDRATE_MONITOR_H */
void baudrate_estimator_init(V24_PIN_T pin)
Initialize baudrate estimator on a specific RX clock pin.
float baudrate_estimator_get_current_estimation(V24_PIN_T pin)
Get latest baudrate estimate.
V24_PIN_T
Typed aliases for V.24 GPIO assignments.
Definition pinmap.h:46