I have a verilog project on BeagleV-Fire that requires 31 pins: 20 inputs and 11 outputs.
What pins are available as outputs and inputs on P8 and P9 that can be connected to FPGA fabric?
Following the guide, I am connecting my pins from my module like so:
assign GPIO_OE_net_0 = { 16'b0101111111111100, GPIO_OE };
assign GPIO_OUT_net_0 = { 1'b0 , MISO, 1'b0, AERIN_REQ, AEROUT_ADDR[7], AEROUT_ADDR[6], AEROUT_ADDR[5],
AEROUT_ADDR[4], AEROUT_ADDR[3], AEROUT_ADDR[2], AEROUT_ADDR[1], AEROUT_ADDR[0], AERIN_ACK, 2'b00, GPIO_OUT };
Is this the correct way to do so? What I believe I understand I am doing is enabling and connecting pins P8_32-41 and P8_43.
What is the method to configure the other pins I need as inputs?