ether2ser
0.1.0
Ethernet <-> synchronous V.24 bridge firmware for RP2040 + W5500
Loading...
Searching...
No Matches
board_pins.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/board_pins.h
5
* Purpose: GPIO pin definitions for W55RP20-EVB-PICO board
6
*
7
* SPDX-License-Identifier: Apache-2.0
8
*
9
* Copyright (c) 2026 Florian <f.leuze@outlook.de>
10
*/
11
12
#ifndef BOARD_PINS_H
13
#define BOARD_PINS_H
14
15
// Related headers
16
17
// Standard library headers
18
19
// Project Headers
20
21
// Generated headers
22
27
#define PIN_TXD 0
// Serial data output to MAX3243
28
#define PIN_RXD 1
// Serial data input from MAX3243
29
#define PIN_RTS 2
// Request to Send output
30
#define PIN_CTS 3
// Clear to Send input
31
#define PIN_DTR 4
// Data Terminal Ready output
32
#define PIN_DSR 5
// Data Set Ready input
33
#define PIN_DCD 6
// Data Carrier Detect input
40
#define PIN_TXC_EXT 15
// External transmit clock input (pin 15)
41
#define PIN_RXC 17
// Receive clock input
42
#define PIN_TXC_GEN 24
// Generated transmit clock output (pin 24)
49
#define PIN_TX_ACTIVE 25
// TX active indicator output
50
51
#define PIN_STATUS_LED PICO_DEFAULT_LED_PIN
54
#endif
// BOARD_PINS_H
src
system
board_pins.h
Generated by
1.9.8