Skip to content

Remove data arg for DDS source, use latest release image #160

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

Merged
merged 2 commits into from
Jul 29, 2024
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 +adi/+AD9081/Tx.m
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function setupImpl(obj, data)
if strcmp(obj.DataSource,'DMA')
setupImpl@adi.common.Tx(obj, data);
else
setupImpl@adi.common.Tx(obj, data);
setupImpl@adi.common.Tx(obj);
end
if obj.SkipInit
obj.phyDev = getDev(obj, obj.phyDevName);
Expand Down
2 changes: 1 addition & 1 deletion JenkinsfileHW
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ lock(label: 'adgt_test_harness_boards') {
@Library('sdgtt-lib@adgt-test-harness') _ // Not necessary when we turn on global libraries :)
def hdlBranch = "NA"
def linuxBranch = "NA"
def bootPartitionBranch = "2021_r2"
def bootPartitionBranch = "2022_r2"
def firmwareVersion = 'v0.34'
def bootfile_source = 'artifactory' // options: sftp, artifactory, http, local
def harness = getGauntlet(hdlBranch, linuxBranch, bootPartitionBranch, firmwareVersion, bootfile_source)
Expand Down
Loading