1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
// XSensorCtrl.cpp: Body of the XSensorCtrl class.
//
//////////////////////////////////////////////////////////////////////
#include "XSensorCtrl.h"
#include <stdio.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
XSensorCtrl::XSensorCtrl()
{
}
XSensorCtrl::~XSensorCtrl()
{
}
void XSensorCtrl::OnPacketReceived(CigiBasePacket *Packet)
{
CigiSensorCtrlV3 *InPckt = (CigiSensorCtrlV3 *)Packet;
bool ok = true;
printf("===> SensorCtrl <===\n");
printf("ViewID ==> %d\n",InPckt->GetViewID());
printf("SensorID ==> %d\n",InPckt->GetSensorID());
printf("TrackMode ==> %d\n",InPckt->GetTrackMode());
printf("SensorOn ==> %d\n",InPckt->GetSensorOn());
printf("Polarity ==> %d\n",InPckt->GetPolarity());
printf("LineDropEn ==> %d\n",InPckt->GetLineDropEn());
printf("AutoGainEn ==> %d\n",InPckt->GetAutoGainEn());
printf("TrackPolarity ==> %d\n",InPckt->GetTrackPolarity());
printf("ResponseType ==> %d\n",InPckt->GetResponseType());
printf("Gain ==> %f\n",InPckt->GetGain());
printf("Level ==> %f\n",InPckt->GetLevel());
printf("ACCoupling ==> %f\n",InPckt->GetACCoupling());
printf("Noise ==> %f\n",InPckt->GetNoise());
}
|