We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 858453d commit b80faceCopy full SHA for b80face
src/deltacast_common.cpp
@@ -277,6 +277,15 @@ print_available_delta_boards(bool full)
277
<< delta_format_version(DriverVersion, false) << ")\n";
278
if (full) {
279
print_avail_channels(BoardHandle);
280
+
281
+ ULONG IsBiDir = 2;
282
+ VHD_GetBoardProperty(BoardHandle, VHD_CORE_BP_IS_BIDIR,
283
+ &IsBiDir);
284
+ printf("\t\tbidirectional (switchable) channels: "
285
+ "%s\n",
286
+ IsBiDir == 2 ? "ERROR"
287
+ : IsBiDir == TRUE ? "supported"
288
+ : "not supported");
289
}
290
if ((DllVersion >> 16U) != (DriverVersion >> 16U)) {
291
LOG(LOG_LEVEL_WARNING)
0 commit comments