Skip to content

Commit 529be4c

Browse files
committed
Set vivado 2023.1, Matlab R2022b, HDL main branch
1 parent 3405629 commit 529be4c

11 files changed

Lines changed: 16 additions & 126 deletions

File tree

+adi/Contents.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
% Analog Devices, Inc. High Speed Converter Toolbox
2-
% Version 21.1.1 (R2021a)
2+
% Version 21.1.1 (R2022b)
33
%
44
% ==== Table of Contents (TOC) ====
55
%

+adi/Version.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
% BSP Version information
44
properties(Constant)
55
HDL = 'hdl_2021_r2';
6-
Vivado = '2022.2';
6+
Vivado = '2023.1';
77
MATLAB = 'R2022b';
88
Release = '22.2.1';
99
AppName = 'Analog Devices, Inc. High-Speed Converter Toolbox';

CI/gen_doc/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ SHELL := /bin/bash
88
MLFLAGS := -nodisplay -nodesktop -nosplash
99

1010
ifeq ($(MLRELEASE),)
11-
MLRELEASE := R2021a
11+
MLRELEASE := R2022b
1212
endif
1313

1414
ifeq ($(VIVADORELEASE),)
15-
VIVADORELEASE := 2022.2
15+
VIVADORELEASE := 2023.1
1616
endif
1717

1818
ifeq ($(HDLBRANCH),)
19-
HDLBRANCH := hdl_2018_r2
19+
HDLBRANCH := main
2020
endif
2121

2222
ifeq ($(OS),Windows_NT)

CI/gen_doc/docs/_pages/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ The base dependencies for the toolbox requires libiio and the libiio MATLAB bind
3535

3636
To leverage HDL-Coder and the reference designs with the toolbox requires the following components:
3737

38-
- Xilinx Vivado 2021.1
39-
- Xilinx SDK 2021.1
38+
- Xilinx Vivado 2023.1
39+
- Xilinx SDK 2023.1
4040
- Simulink
4141
- [HDL-Coder™](https://www.mathworks.com/products/hdl-coder.html)
4242
- [HDL Coder™ Support Package for Xilinx Zynq Platform](https://www.mathworks.com/matlabcentral/fileexchange/40447-hdl-coder-support-package-for-xilinx-zynq-platform)

CI/gen_doc/docs/_pages/targeting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ High-Speed Converter Toolbox supports the IP Core generation flow from MathWorks
1111

1212
## Getting Started
1313

14-
To perform targeting will require FPGA vendor tools for the FPGA system. For Xilinx this will be Vivado and the toolbox will require specific versions for each release. For the current release this is Vivado 2022.2. Using other versions are not supported. To build the necessary BOOT.BIN files will require the Xilinx Vitis as well.
14+
To perform targeting will require FPGA vendor tools for the FPGA system. For Xilinx this will be Vivado and the toolbox will require specific versions for each release. For the current release this is Vivado 2023.1. Using other versions are not supported. To build the necessary BOOT.BIN files will require the Xilinx Vitis as well.
1515

1616
Once you have the installed the necessary 3rd party tools MATLAB needs to be told where they are installed by use of the [hdlsetuptoolpath](https://www.mathworks.com/help/hdlcoder/ref/hdlsetuptoolpath.html) command. For Windows the following MATLAB command can be used:
1717

1818
```matlab
19-
hdlsetuptoolpath('ToolName', 'Xilinx Vivado', 'ToolPath', 'C:\Xilinx\Vivado\2022.2\bin\vivado.bat');
19+
hdlsetuptoolpath('ToolName', 'Xilinx Vivado', 'ToolPath', 'C:\Xilinx\Vivado\2023.1\bin\vivado.bat');
2020
```
2121

2222
or Linux:
2323

2424
```matlab
25-
hdlsetuptoolpath('ToolName', 'Xilinx Vivado', 'ToolPath', '/opt/Xilinx/Vivado/2022.2/bin/vivado');
25+
hdlsetuptoolpath('ToolName', 'Xilinx Vivado', 'ToolPath', '/opt/Xilinx/Vivado/2023.1/bin/vivado');
2626
```
2727

2828
Please change the tool path if it is different on your system.

CI/scripts/build_bsp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -x
33

44
if [ -z "${HDLBRANCH}" ]; then
5-
HDLBRANCH='hdl_2021_r2'
5+
HDLBRANCH='main'
66
fi
77

88
# Script is designed to run from specific location

CI/scripts/synth_designs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ BOARD=$1
44
MLFLAGS="-nodisplay -nodesktop -nosplash"
55
if [ -z "$MLRELEASE" ]
66
then
7-
MLRELEASE=R2022a
7+
MLRELEASE=R2022b
88
fi
99

1010
MLPATH=/usr/local/MATLAB
1111

1212
if [ -z "$VIVADORELEASE" ]
1313
then
14-
VIVADORELEASE=2022.2
14+
VIVADORELEASE=2023.1
1515
fi
1616

1717
cd ../..

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ flags = gitParseFlags()
44

55
dockerConfig = getDockerConfig(['MATLAB','Vivado'], matlabHSPro=false)
66
dockerConfig.add("-e MLRELEASE=R2022b")
7-
dockerConfig.add("-e VIVADORELEASE=2022.2")
7+
dockerConfig.add("-e VIVADORELEASE=2023.1")
88
dockerHost = 'docker'
99

1010
////////////////////////////

JenkinsfileCron

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
dockerConfig = getDockerConfig(['MATLAB','Vivado'], matlabHSPro=false)
44
dockerConfig.add("-e MLRELEASE=R2022b")
5-
dockerConfig.add("-e VIVADORELEASE=2022.2")
5+
dockerConfig.add("-e VIVADORELEASE=2023.1")
66
dockerHost = 'docker'
77

88
////////////////////////////

Jenkinsfile_dev

Lines changed: 0 additions & 110 deletions
This file was deleted.

0 commit comments

Comments
 (0)