hello everybody
I'am a beginner at the VHDL programming. I use CPLD Max V (5M570ZF256C5N) in my internship and I have to write a program in VHDL. the program is selection between two audio sources via I2S bus. so I do not know how to write the I2S protocol on quartus can you help me to solve this problem. thank you.連結已複製
9 回應
Hi,
1. Collect information about HDL (VHDL, Verilog) languages & I2S protocol like IEEE Papers, Case study, Thesis etc. 2. Study & understand the protocol. 3. Start HDL coding parallel & also go through the Intel online training for HDL & Quartus tool. Refer the following links & attachment, https://www.altera.com/support/training/curricula.html Best Regards Vikas Jathar (This message was posted on behalf of Intel Corporation)hello vikas
i have read the PDF tha you give me and i searched on the internet. I found the I2S_interface VHDL program. i tried to compile it but I had some error. after resolve the maximum possible of error I still have some of them. here is the message that says there is an error: here is the code :Hi,
generic ( DATA_WIDTH : integer range 16 to 32;
BITPERFRAME : integer );
Modify the code like bellow,
generic ( DATA_WIDTH : integer := 32;
BITPERFRAME : integer := 0
);
If want to use in the range format then use a signal like a bellow,
signal temp : integer range 0 to DATA_WIDTH := 0;
Let me know if this has helped resolve the issue you are facing or if you need any further assistance. Best Regards Vikas Jathar (This message was posted on behalf of Intel Corporation)
Hi,
The screenshot is not visible properly. Have you provided all input stimulus in Testbench? If not then refer testbench format from Google & check again. Please open a new thread for better support. Best Regards Vikas Jathar (This message was posted on behalf of Intel Corporation)