comparison venus/src/top/board.v @ 82:541b55e6bf47

add UART rescue header
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 08 Dec 2021 05:00:50 +0000
parents 4baae6215619
children
comparison
equal deleted inserted replaced
81:fbe54d6cd082 82:541b55e6bf47
51 /* pull-down resistors before and after the switch */ 51 /* pull-down resistors before and after the switch */
52 52
53 resistor VBUS_pulldown (VBUS, GND); 53 resistor VBUS_pulldown (VBUS, GND);
54 resistor VCHG_pulldown (VCHG, GND); 54 resistor VCHG_pulldown (VCHG, GND);
55 55
56 /* UART interface "rescue" header */
57
58 header_10pin uart_header (.pin_1(GND),
59 .pin_2(GND),
60 .pin_3(Host_RxD2),
61 .pin_4(Host_RxD),
62 .pin_5(Host_TxD2),
63 .pin_6(Host_TxD),
64 .pin_7(Host_DCD),
65 .pin_8(Host_CTS),
66 .pin_9(Host_DTR),
67 .pin_10(Host_RTS)
68 );
69
56 endmodule 70 endmodule