Skip to content
Snippets Groups Projects
Commit 1de64c9b authored by Kenneth Hiemstra's avatar Kenneth Hiemstra
Browse files

For Arria10* it solves the not-working I2C issue: bidirectional pin

drive out '1' instead of 'Z'. It also removes the Warning (12620): Input port OE of I/O output buffer is not connected, but the atom is driving a bi-direct...
parent 8b113a74
No related branches found
No related tags found
No related merge requests found
...@@ -137,6 +137,13 @@ ARCHITECTURE rtl OF i2c_smbus IS ...@@ -137,6 +137,13 @@ ARCHITECTURE rtl OF i2c_smbus IS
SIGNAL timeout : STD_LOGIC; SIGNAL timeout : STD_LOGIC;
SIGNAL nxt_timeout : STD_LOGIC; SIGNAL nxt_timeout : STD_LOGIC;
-- Attributes for Quartus. Fixes the issues:
-- - For Arria10* it solves the I2C issue: bidirectional pin drive out '1' instead of 'Z'
-- - Removes the Warning (12620): Input port OE of I/O output buffer is not connected, but the atom is driving a bi-direct...
attribute keep: boolean;
attribute keep of scl_o: signal is true;
attribute keep of sda_o: signal is true;
BEGIN BEGIN
-- CONSTANT Signals dependent on GENERIC Signal gs_sim -- CONSTANT Signals dependent on GENERIC Signal gs_sim
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment