From b80facecd2878cddd533e6b17e0f6dcd53e1b075 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Wed, 30 Apr 2025 08:56:51 +0200 Subject: [PATCH] deltacast_common: print bidir ch support --- src/deltacast_common.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/deltacast_common.cpp b/src/deltacast_common.cpp index 32a97dad9..3dd718a2f 100644 --- a/src/deltacast_common.cpp +++ b/src/deltacast_common.cpp @@ -277,6 +277,15 @@ print_available_delta_boards(bool full) << delta_format_version(DriverVersion, false) << ")\n"; if (full) { print_avail_channels(BoardHandle); + + ULONG IsBiDir = 2; + VHD_GetBoardProperty(BoardHandle, VHD_CORE_BP_IS_BIDIR, + &IsBiDir); + printf("\t\tbidirectional (switchable) channels: " + "%s\n", + IsBiDir == 2 ? "ERROR" + : IsBiDir == TRUE ? "supported" + : "not supported"); } if ((DllVersion >> 16U) != (DriverVersion >> 16U)) { LOG(LOG_LEVEL_WARNING)