File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ module clock #(
9
9
parameter WAIT_END ,
10
10
parameter PUSH_PULL = 0
11
11
)(
12
- inout logic scl,
12
+ inout wire scl,
13
13
input logic clk_in,
14
14
input logic release_line,
15
15
output logic bus_clear,
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ module i2c_master #(
21
21
// By doing so, you acknowledge and accept the risks involved.
22
22
parameter FORCE_PUSH_PULL = 0
23
23
) (
24
- inout logic scl,
24
+ inout wire scl,
25
25
input logic clk_in, // an arbitrary clock, used to derive the scl clock
26
26
output logic bus_clear,
27
27
28
- inout logic sda,
28
+ inout wire sda,
29
29
input logic mode, // 0 = transmit, 1 = receive
30
30
31
31
// These two flags are exclusive; a transfer can't continue if a new one is starting
You can’t perform that action at this time.
0 commit comments