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

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


            String possible = "possible block sub types: [";
            List<BlockSubType> possibleSubTypes = frameCountMap.get(numFrames);
            if (possibleSubTypes != null) {
                Iterator<BlockSubType> it = possibleSubTypes.iterator();
                while (it.hasNext()) {
                    BlockSubType bst = it.next();
                    possible += bst.getName();
                    if (it.hasNext()) {
                        possible += ", ";
                    }
                }
                possible += "]";
View Full Code Here


    }
    return frames;
  }
  public static int getFramesPerConfigurationBlock(XilinxConfigurationSpecification spec, int blockNum, int column) {
    BlockType type = spec.getBlockTypes().get(blockNum);
    BlockSubType subType = spec.getBlockSubTypeLayout(type).get(column);
    int result = subType.getFramesPerConfigurationBlock();
    return result;
  }
View Full Code Here

TOP

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

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.