From cbf9da227049196e5b338cdc1d29dbd0fc994011 Mon Sep 17 00:00:00 2001 From: Patrick Huesmann Date: Wed, 17 Apr 2024 12:29:49 +0200 Subject: [PATCH] fix: remove pl-ddr test code --- example/demo_cpp/src/axi_dma_demo.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/example/demo_cpp/src/axi_dma_demo.cpp b/example/demo_cpp/src/axi_dma_demo.cpp index e589a75e..78e606e7 100644 --- a/example/demo_cpp/src/axi_dma_demo.cpp +++ b/example/demo_cpp/src/axi_dma_demo.cpp @@ -120,10 +120,7 @@ int main(int argc, char* argv[]) { std::unique_ptr udmabuf; if (mode == DmaMode::UIO) { - UioDeviceLocation plddr_test{"plddr-axi-test", {}}; - - // udmabuf = std::make_unique(); - udmabuf = std::make_unique(plddr_test); + udmabuf = std::make_unique(); } else { udmabuf = std::make_unique(dev_path, target_hw_consts::fpga_mem_phys_addr);