Hi everybody,
I have a problem with the KEYs and LEDR 0 of the DE10 Lite.
My program is quite simple : (see below)
I import the QSF file before compilation.
After downloading the SOF file, the board behaves in a funny way :
I need to depress and release KEY 1 or KEY 0 another time to go back to step one.
Only LEDR0 seems to have this issue, if the output is on LEDR1 or LEDR2 it works fine
I tried it on several boards, with the same result. Has anyone got a clue?
Thank you
Bernard
Link Copied
I forgot to include the program; Apologies!
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.all;
Entity et_ou is PORT(
KEY : IN std_logic_vector(1 downto 0);
LEDR : OUT std_logic_vector(3 downto 0));
End et_ou;
Architecture equations of et_ou is
Begin
LEDR(0) <= KEY(1) and KEY(0);
End equations;
Hi Bernard,
Here, do you mean 'If I release KEY 1' ?
"Only LEDR0 seems to have this issue, if the output is on LEDR1 or LEDR2 it works fine"
just check for D-Flip flop program/ Inverter program for LEDR0 & LEDR1.
Check with different KEY & LED set.
Check the same program by variable assignment instead signal.
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)
For more complete information about compiler optimizations, see our Optimization Notice.