Skip to content

Updated PF_IOD_GENERIC_RX_version and created dg.exp for risc-v-demo #90

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 3 commits into from
Dec 3, 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
4 changes: 2 additions & 2 deletions risc-v-demo/precompiled/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ eval $cmd

# Now copy the necessary files to the board
cmd="scp -r $SSH_OPT "
cmd+=" shls_sw_dependencies/ffmpeg4.4-riscv_64-linux"
cmd+=" shls_sw_dependencies/opencv4.5.4-riscv_64-linux"
cmd+=" shls_sw_dependencies/ffmpeg4.4-riscv_64"
cmd+=" shls_sw_dependencies/opencv4.5.4-riscv_64"
cmd+=" root@$BOARD_IP:/usr/local/shls_sw_dependencies"
echo $cmd
eval $cmd
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
SHLS_ROOT_DIR=$(dirname "$(dirname "$(which shls)")")
echo $SHLS_ROOT_DIR

rsync -av --exclude='*.tar.gz' $SHLS_ROOT_DIR/smarthls-library/external/vision/precompiled_sw_libraries/* ./
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ if { [file exists $project_dir/$project_name.prjx] } {
set mipicsi2rxdecoderPF_version 4.4.0
set PF_CCC_version 2.2.220
set PF_CLK_DIV_version 1.0.103
set PF_IOD_GENERIC_RX_version 2.1.110
set PF_IOD_GENERIC_RX_version 2.1.113
set PF_OSC_version 1.0.102
set RGBtoYCbCr_version 4.4.0
set PF_XCVR_REF_CLK_version 1.0.103
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ USER_CXX_FLAG+=-DHLS_DBG_PRINTF
USER_CXX_FLAG+=-DHLS_PROFILER_SAMPLES=100
USER_CXX_FLAG+=-DHLS_PROFILER_ENABLE

BOARD_IP=10.245.245.184
BOARD_IP?=192.168.1.2

include $(LEVEL)/Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ rm -f $ELF
HLS_DRIVER_PATH="./hls_output/accelerator_drivers"

# Extra defines to include shared opencv/ffmpeg libraries below:
OPENCV_PATH=$EXAMPLE_ROOT_FOLDER/precompiled/shls_sw_dependencies/opencv4.5.4-$arch-linux
FFMPEG_PATH=$EXAMPLE_ROOT_FOLDER/precompiled/shls_sw_dependencies/ffmpeg4.4-$arch-linux
OPENCV_PATH=$EXAMPLE_ROOT_FOLDER/precompiled/shls_sw_dependencies/opencv4.5.4-$arch
FFMPEG_PATH=$EXAMPLE_ROOT_FOLDER/precompiled/shls_sw_dependencies/ffmpeg4.4-$arch

LD_LIBRARY_PATH=$OPENCV_PATH/lib:$FFMPEG_PATH/lib:$LD_LIBRARY_PATH
PATH=$FFMPEG_PATH/bin:$PATH
Expand Down