General Description: Upon creating an implementation from within FPGA Express for an HDL file with an INOUT declaration, FPGA Express generates a warning indicating that the type INOUT is unknown. Then Express infers an OUT type in place of the INOUT.
解决方案
Make sure that all signals declared as bidirectional are actually used as both input and output. See (Xilinx Solution 3296) for more details.
The above warnings usually occur when there are multiple three-state inferences driving the inout signal. Rather than choosing one three-state to place in the IOB, Express will place all the three-state using internal TBUFs then use a standard OBUF at the IOB. Examine your HDL to be sure the bidirectional structure is explicit.