FreeCalypso > hg > freecalypso-schem2
annotate venus/src/core/rfmatch_rita2pa_lb.v @ 13:975b9b7ec712
Venus MCL: add 74LVC125A for Calypso UART inputs
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Fri, 19 Nov 2021 18:57:57 +0000 | 
| parents | 3ed0f7a9c489 | 
| children | 
| rev | line source | 
|---|---|
| 9 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 1 /* RF Tx path from Rita to PA, low bands */ | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 2 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 3 module rfmatch_rita2pa_lb (In, Out, GND); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 4 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 5 input In; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 6 output Out; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 7 input GND; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 8 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 9 wire mid1, mid2; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 10 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 11 inductor L601 (In, mid1); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 12 capacitor C655 (mid1, mid2); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 13 chip_attenuator R600 (mid2, Out, GND, GND); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 14 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 15 endmodule | 
