Forum Discussion
Altera_Forum
Honored Contributor
14 years agoProblem with GPIO assignments for the DE2
I have a feeling this might be some kind of bug? I'm running Quartus 11.0. I am using the GPIO_0 for various inputs and outputs and connecting my VHDL entities to the GPIO pins on a top level B...
Altera_Forum
Honored Contributor
14 years agoHow does the RTL look:
Bidirectional pins need to be defined in the RTL for the pin-planner to connect them properly. IE: for verilog they would be defined some like: ... inout [15:0] GPIO_0, ... assign GPIO_0 = OE_logic_c ? GPIO_r : 'bz; // Tristates the outputs, sets direction as input ...