Package edu.byu.ece.rapidSmith.bitstreamTools.configurationSpecification

Examples of edu.byu.ece.rapidSmith.bitstreamTools.configurationSpecification.XilinxConfigurationSpecification


   *
   * @param ignoreUnconfiguredFrames If true, this method will only compare frames
   * that are configured on both FPGAs.
   */
  public ArrayList<Integer> getDifferingFrames(FPGA fpga, boolean ignoreUnconfiguredFrames) {
    XilinxConfigurationSpecification spec = fpga.getDeviceSpecification();
    if (this.spec != spec) {
      return null;
    }

    ArrayList<Integer> dFrames = new ArrayList<Integer>();
View Full Code Here

TOP

Related Classes of edu.byu.ece.rapidSmith.bitstreamTools.configurationSpecification.XilinxConfigurationSpecification

Copyright © 2018 www.massapicom. 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.