Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
10 years ago

DE0-Nano Tutorial for Nios II <-> Cyclone communication

I've seen a lot of tutorials for programming the FPGA on the DE0-Nano and for the Nios II but is there a tutorial for communicating between the two? ... Like adding a counter in FPGA and using that counter in Nios.

5 Replies

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    You could do your counter in Verilog or VHDL and add it as a custom instruction to nios or a new component in Qsys.

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    https://www.youtube.com/watch?v=v6rhbvablo8 is a video that describes how to add custom components. It's made for a slightly older Quartus version, but it should be easy to figure out the differences.

    You will also need to understand how the Avalon bus works. That is what NIOS uses. After you have created your custom component, it will be added to the IP catalog and you can insert it into a Nios system.
  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    You could also create a counter that has Avalon-MM slave and connect Nios II data master to it.

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    --- Quote Start ---

    https://www.youtube.com/watch?v=v6rhbvablo8 is a video that describes how to add custom components. It's made for a slightly older Quartus version, but it should be easy to figure out the differences.

    You will also need to understand how the Avalon bus works. That is what NIOS uses. After you have created your custom component, it will be added to the IP catalog and you can insert it into a Nios system.

    --- Quote End ---

    this example is fantastic...