Image Acquisition Control AW00123409000118 Basler ace USB 3.0camera.AcquisitionMode.SetValue( AcquisitionMode_Continuous );// Select the frame burst start triggercamera.TriggerSelector.SetValue(TriggerSelector_FrameBurstStart);// Set the mode for the selected triggercamera.TriggerMode.SetValue( TriggerMode_On );// Set the source for the selected triggercamera.TriggerSource.SetValue ( TriggerSource_Line1 );// Set the activation mode for the selected trigger to rising edgecamera.TriggerActivation.SetValue( TriggerActivation_RisingEdge );// Set the acquisition burst frame countcamera.AcquisitionBurstFrameCount.SetValue( 5 );You can also use the Basler pylon Viewer application to easily set the parameters.For more information about the pylon API and the pylon Viewer, see Section 3.1 on page 61.6.3.4 Using a Software Frame Burst Start Trigger6.3.4.1 IntroductionIf the camera’s FrameBurstStartTriggerMode parameter is set to on and the FrameBurstStartTriggerSource parameter is set to software, you must apply a software frame burst start triggersignal to the camera before you can begin frame acquisition.A software frame burst start trigger signal is applied by: Setting the TriggerSelector parameter to Acquisition Start. Executing a Trigger Software command.The camera will initially be in a "waiting for frame burst start trigger" acquisition status. It cannotreact to frame trigger signals when in this acquisition status. When a software frame burst starttrigger signal is received by the camera, it will exit the "waiting for frame burst start trigger"acquisition status and will enter the "waiting for frame start trigger" acquisition status. It can thenreact to frame start trigger signals. When the number of frame start trigger signals received by thecamera is equal to the current AcquisitionBurstFrameCount parameter setting, the camera willreturn to the "waiting for frame burst start trigger" acquisition status. When a new software frameburst start trigger signal is applied to the camera, it will again exit from the "waiting for frame burststart trigger" acquisition status and enter the "waiting for frame start trigger" acquisition status.(Note that as long as the TriggerSelector parameter is set to FrameBurstStart, a software frameburst start trigger will be applied to the camera each time a Trigger Software command is executed.)