Forum Discussion
Altera_Forum
Honored Contributor
13 years agoMax V output pin in a disconnected mode on logic 1
I'm using Max V dev kit for basic logic gate design. No clocking or anything. Logic part works fine. On logic 1 / high I would like the output pin to be floating / disconnected. Right now it pr...
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- Do I need any passive external components to make this work? --- Quote End --- No, you just need to describe it the way you want. For example, in VHDL the code for a tri-state buffer with an active-low output-enable is
output_pin <= 'Z' when (output_enableN = '1') else '0';
This describes a tri-state buffer with a zero on its input. When you enable the buffer it drives the output pin low, when you disable the buffer, the output pin is tristated. You can do something similar with a buffer component in the schematic editor, or in Verilog HDL. Cheers, Dave