Examples of AcquisitionResult


Examples of nl.lxtreme.ols.api.acquisition.AcquisitionResult

    // will update the view and show the signals...
    revalidateAll();

    // optionally center the view on the trigger moment...
    boolean autoCenterOnTrigger = UIManager.getBoolean( UIManagerKeys.AUTO_CENTER_TO_TRIGGER_AFTER_CAPTURE );
    final AcquisitionResult capturedData = aDataSet.getCapturedData();

    // Issue #181
    if ( autoCenterOnTrigger && ( capturedData != null ) && capturedData.hasTriggerData() )
    {
      SwingComponentUtils.invokeOnEDT( new Runnable()
      {
        public void run()
        {
          scrollToTimestamp( capturedData.getTriggerPosition() );
        }
      } );
    }
  }
View Full Code Here

Examples of nl.lxtreme.ols.api.acquisition.AcquisitionResult

   *          the JTAG mode defining the edges on which data can be sampled and
   *          on which edges data can change.
   */
  private void clockDataOnEdge( final JTAGDataSet aDataSet, final int aSlaveSelectedIdx )
  {
    final AcquisitionResult data = this.context.getData();

    final int[] values = data.getValues();
    final long[] timestamps = data.getTimestamps();

    final int startOfDecode = Math.max( aSlaveSelectedIdx, aDataSet.getStartOfDecode() );
    final int endOfDecode = aDataSet.getEndOfDecode();

    final int tdoMask = ( 1 << this.tdoIdx );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.