Line Format#
機能を使用する#
Line Formatの決定#
I/Oラインの電気的フォーマットを決定するには、次の手順に従います。
- パラメーターを
LineSelector
parameter to the desired I/O line, e.g.,Line1
. - Get the value of the
LineFormat
parameter.
このパラメーターは読み取り専用です。
使用可能な値#
可能な値は次のとおりです。
NoConnect
: The line is not connected.OptoCoupled
: The line is an opto-coupled I/O line.OpenDrain
,TTL
,LVTTL
, orRS422
: The line is a general purpose I/O (GPIO) line.
サンプルコード#
/* Macro to check for errors */
#define CHECK(errc) if (GENAPI_E_OK != errc) printErrorAndExit(errc)
GENAPIC_RESULT errRes = GENAPI_E_OK; /* Return value of pylon methods */
size_t len = 0;
char e_str[64] = {0};
/* Select the desired I/O line */
errRes = PylonDeviceFeatureFromString(hdev, "LineSelector", "Line1");
CHECK(errRes);
/* Get the electrical format of the line */
len = sizeof(e_str);
errRes = PylonDeviceFeatureToString(hdev, "LineFormat", e_str, &len);
CHECK(errRes);
pylon Viewerを使用して、パラメーターを簡単に設定することもできます。