Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Vivado 2023.1 #1145

Merged
merged 2 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/data_offload/data_offload.v
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
module data_offload #(

parameter ID = 0,
parameter [ 0:0] MEM_TYPE = 1'b0, // 1'b0 -FPGA RAM; 1'b1 - external memory
parameter MEM_TYPE = 0, // 1'b0 -FPGA RAM; 1'b1 - external memory
parameter MEM_SIZE_LOG2 = 10, // log2 of memory size in bytes

parameter TX_OR_RXN_PATH = 0, // if set IP is used in TX path, other wise in RX path
Expand Down
2 changes: 1 addition & 1 deletion scripts/adi_env.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [info exists ::env(ADI_GHDL_DIR)] {
}

# Define the supported tool version
set required_vivado_version "2022.2"
set required_vivado_version "2023.1"
if {[info exists ::env(REQUIRED_VIVADO_VERSION)]} {
set required_vivado_version $::env(REQUIRED_VIVADO_VERSION)
} elseif {[info exists REQUIRED_VIVADO_VERSION]} {
Expand Down