WARNING:HDLCompiler:751 - "start_i2c.v" Line 31: Redeclaration of ansi port rst_to_tmr is not allowed
다음 코드와 같이 output으로 정의한 포트를 reg로 다시 재정의하면 경고가 나타난다.
`include "timer_A.v"
module start_i2c(
...
output rst_to_tmr
...
);
...
reg [0:0] rst_to_tmr;
아래와 같이 변경하면 경고를 없앨 수 있다.
`include "timer_A.v"
module start_i2c(
...
output reg rst_to_tmr
...
);
'FPGA > TCL 에러 로그' 카테고리의 다른 글
[Vivado 2020.2 Simulation] boost::filesystem::remove: 다른 프로세스가 파일을 사용 중이기 때문에 프로세스가 액세스 할 수 없습니다: (0) | 2022.06.21 |
---|---|
[Opt 31-67] Problem: (0) | 2022.05.25 |
ERROR: [filemgmt 56-189] Failed to resolve reference. Nothing was found in the project to match the name 'leds'. (0) | 2022.04.06 |
ERROR: [Xicom 50-8] xicom (0) | 2022.03.11 |
[Opt 31-1] OBUFDS pin is not connected to a top-level port. (0) | 2022.02.28 |