Line Termination#
The camera's GPIO lines are designed to transmit RS-422 differential signals. Enabling a 120 Ω resistor at the end of the transmission line avoids signal reflections and ensures signal integrity.
情報
For detailed information about the camera's I/O circuitry, see the I/O Control of racer 2 L Cameras topic.
機能を使用する#
Enabling the Line Termination#
- パラメーターを
LineSelector
parameter to the desired I/O line. - パラメーターを
LineTermination
parameter totrue
to enable the termination resistor. By default, the parameter is set tofalse
, i.e., line termination is disabled.
サンプルコード#
INodeMap& nodemap = camera.GetNodeMap();
// Select Line 1
CEnumParameter(nodemap, "LineSelector").SetValue("Line1");
// Enable the line termination for the I/O line selected
CBooleanParameter(nodemap, "BslLineTermination").SetValue(true);
// Disable the line termination for the I/O line selected
CBooleanParameter(nodemap, "BslLineTermination").SetValue(false);
// Select Line 1
camera.Parameters[PLCamera.LineSelector].SetValue(PLCamera.LineSelector.Line1);
// Enable the line termination for the I/O line selected
camera.Parameters[PLCamera.BslLineTermination].SetValue(true);
// Disable the line termination for the I/O line selected
camera.Parameters[PLCamera.BslLineTermination].SetValue(false);
/* 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 */
/* Select Line 1 */
errRes = PylonDeviceFeatureFromString(hdev, "LineSelector", "Line1");
CHECK(errRes);
/* Enable the line termination for the I/O line selected */
errRes = PylonDeviceSetBooleanFeature(hdev, "BslLineTermination", 1);
CHECK(errRes);
/* Disable the line termination for the I/O line selected */
errRes = PylonDeviceSetBooleanFeature(hdev, "BslLineTermination", 0);
CHECK(errRes);
pylon Viewerを使用して、パラメーターを簡単に設定することもできます。