forked from tanchou/Verilog
- Created DHT11 interface in Verilog to handle communication with DHT11 sensor. - Implemented LED control logic to indicate sensor status and data readiness. - Added project scripts for building, cleaning, and simulating the design. - Established constraints for FPGA pin assignments. - Developed testbench for DHT11 UART communication. - Updated README files to reflect project functionality and commands.
7 lines
212 B
Batchfile
7 lines
212 B
Batchfile
@call c:\oss-cad-suite\environment.bat
|
|
@echo off
|
|
if "%1"=="sim" call scripts\simulate.bat
|
|
if "%1"=="wave" call scripts\gtkwave.bat
|
|
if "%1"=="clean" call scripts\clean.bat
|
|
if "%1"=="build" call scripts\build.bat
|