Forum Discussion
Altera_Forum
Honored Contributor
16 years agoEthernet with DSP Dev. Kit Cyclone III (no NIOS)
Hi, I have the dsp development kit, cyclone iii edition (http://www.altera.com/products/devkits/altera/kit-cyc3-dsp.html). How can I use the Ethernet? In my altera > 80 > ip Direct...
Altera_Forum
Honored Contributor
16 years agoOK. I think I am making good progress. :)
Now I created a VHDL core (FPGA) which is connected to the MAC. I am wondering how I can send my packet from the FPGA to the MAC. I would do it like this: (this is no valid VHDL syntax, it is only for showing the concept)address = 0x0
data = ... (first 4 byte of the packet)
--> falling/rising edge of signal_write
address = 0x1
data = ... (second 4 byte of the packet)
--> falling/rising edge of signal_write
...
--> transmit the created packet (how?) Is this a correct beginning?