Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
20704 Discussions

How to generate 32-bit Counter Values using NIOS II Processor?

Altera_Forum
Honored Contributor II
2,280 Views

Hi,  

 

I am having Verilog code for 32-bit Counter Values, and also i know to compile in Quartus. But my actual requirement is, i need to implement the counter design from Quartus through NIOS interface. Please tell me how it is possible ? What interconnect i need to cho0se in QSYS ?:( 

 

module ThirtyTwobit_counter ( out , // Output of the counter clk , // clock Input ); input clk; output out; reg out=0; //-- Sensitive to rising edge always @(posedge clk) begin //-- Incrementar el registro out <= out + 1; end endmodule 

 

First i need to implement the above process.  

 

2. Through Python, i need to give command to NIOS to start the Counter through Ethernet. But above First i need to implement the above process. Please suggest me.
0 Kudos
4 Replies
Altera_Forum
Honored Contributor II
767 Views

Hi,  

 

I have built the 8-bit Counter design in Qsys and tried to add the BD design in Quartus. Then through the c code i thought to initialize the counter in NIOS processor. I am using CYCLONE V FPGA, and Quartus Prime edition. But in Block design, output [7:0] port is missing. Please anyone guide me in this task i dont know where i am making mistake.  

 

module Eight_counter ( out , // Output of the counter clk , // clock Input ); input clk; output out; reg out=0; //-- Sensitive to rising edge always @(posedge clk) begin //-- Incrementar el registro out <= out + 1; end endmodule  

 

As above code, i have built the qip system and generated the qsys component. 

 

https://www.alteraforum.com/forum/attachment.php?attachmentid=15670
0 Kudos
Altera_Forum
Honored Contributor II
767 Views

First, you did not create the counter in Platform Designer. That's just a parallel I/O component you show in your system design. To add the counter as a component in Platform Designer, you have to turn it into a Platform Design component using the Component Editor, specifying the HDL file and setting up the interface(s). 

 

Second, I'm not sure how you are creating that block symbol (.bsf). How did you do it? 

 

See this training to learn about the component editor and the standard interfaces used by Qsys/Platform Designer: 

 

https://www.altera.com/support/training/course/oqsys3000.html
0 Kudos
Altera_Forum
Honored Contributor II
767 Views

 

--- Quote Start ---  

First, you did not create the counter in Platform Designer. That's just a parallel I/O component you show in your system design. To add the counter as a component in Platform Designer, you have to turn it into a Platform Design component using the Component Editor, specifying the HDL file and setting up the interface(s). 

 

Second, I'm not sure how you are creating that block symbol (.bsf). How did you do it? 

 

See this training to learn about the component editor and the standard interfaces used by Qsys/Platform Designer: 

 

https://www.altera.com/support/training/course/oqsys3000.html 

--- Quote End ---  

 

 

Thanks for your response. In Youtube tutorial, i have followed the above process. They made the counter design so simple 

 

I have followed the link https://www.youtube.com/watch?v=pkyfcbtalpw 

 

(https://www.youtube.com/watch?v=pkyfcbtalpw)
0 Kudos
Altera_Forum
Honored Contributor II
767 Views

Besides the fact that video is about SOPC Builder, a tool that is no longer in the software, I don't see anything there about creating a counter.

0 Kudos
Reply