FreeCalypso > hg > freecalypso-schem2
view venus/src/core/rfmatch_rita2pa_lb.v @ 96:ae6951a70d2b
U403: change from 74LVC2G125 to 74LVC2G126
The two parts have the same footprint and pinout, but '126 3-state buffers
have active-high OE inputs instead of active-low. The change is purely
for software benefit: having GPIO 11/12 set to 1 correspond to that current
contribution being enabled will be much more intuitive for developers and
tinkerers.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 09 May 2022 19:27:11 +0000 |
parents | 3ed0f7a9c489 |
children |
line wrap: on
line source
/* RF Tx path from Rita to PA, low bands */ module rfmatch_rita2pa_lb (In, Out, GND); input In; output Out; input GND; wire mid1, mid2; inductor L601 (In, mid1); capacitor C655 (mid1, mid2); chip_attenuator R600 (mid2, Out, GND, GND); endmodule