Nios® V/II Embedded Design Suite (EDS)
Support for Embedded Development Tools, Processors (SoCs and Nios® V/II processor), Embedded Development Suites (EDSs), Boot and Configuration, Operating Systems, C and C++
12596 Discussions

SDRAM DQ always enable buffer error

Altera_Forum
Honored Contributor II
1,091 Views

I have added a SDRAM to my SOPC system, I have instantiated my SOPC system perfectly alright. But when I compile the design, I get the following error 

*************************** 

Error: The node "NIOS_FFT:NIOS_FFT_UUT|Memory_SDram:the_Memory_SDram|za_data[17]" has multiple drivers due to the always-enabled I/O buffer "NIOS_FFT:NIOS_FFT_UUT|zs_dq_to_and_from_the_Memory_SDram[17]" 

*************************** 

 

Can somebody guide me about how to solve this issue? dq of sdram is an io signal, whereas data is an output signal. The code generated by SOPC is given here.... error relates to "za_data <= zs_dq" line 

 

 

--- Quote Start ---  

always @(posedge clk or negedge reset_n) 

begin 

if (reset_n == 0) 

za_data <= 0; 

else  

za_data <= zs_dq; 

end 

--- Quote End ---  

0 Kudos
0 Replies
Reply