How to use a pll output to drive the clock input?

when i use the following code to generate a clock(CLK00IN) from MHZIN to drive the normal logic,it work normally,but when i use it to drive the gtp clock  input  port CLK00,CLK00IN become 0 (no signal),why?
IBUFG system_clk_ibufg
 .O                              (sys_tile0_gtpclkout0_0_to_cmt_i),
 .I                              (MHZIN)
PLL_BASE #
         .CLKFBOUT_MULT     (10),
         .DIVCLK_DIVIDE     (1),
         .CLK_FEEDBACK      ("CLKFBOUT"),
         .CLKFBOUT_PHASE    (0),
         .COMPENSATION      ("SYSTEM_SYNCHRONOUS"),     
         .CLKIN_PERIOD     (25.0),
         .CLKOUT0_DIVIDE    (5),
         .CLKOUT0_PHASE     (0)
    system_clk_pll  
         .CLKIN             (sys_tile0_gtpclkout0_0_to_cmt_i),
         .CLKFBIN           (CLK00FB),
         .CLKOUT0           (CLK00OUT),
         .CLKOUT1           (),
         .CLKOUT2           (),
         .CLKOUT3           (),
         .CLKOUT4           (),
         .CLKOUT5           (),
         .CLKFBOUT          (CLK00FB),
         .LOCKED            (),
         .RST               (system_clk_pll_reset_i)
    BUFG sys_clkout0_bufg_i 
        .O              (CLK00IN),
        .I              (CLK00OUT)
    );

Whether this experiment is done for test purposes?
GT should not have any impact on CLK00IN signal in the code here. GT comes into picture after sys_clkout0_bufg_i. Please check if any optimization happened during implementation.

Similar Messages

  • Data types used in a sub VI - selecting the correct input and output types?

    data types used in a sub VI - selecting the correct input and output types?
    I can never work out how to choose an input or output format for Subvi's.
    I want to create a SubVI for the code in red. I needs an VI Server Reference compatible input and an output that goes to  a waveform.
    Thanks in advance.
    Attachments:
    data types.PNG ‏11 KB

    GerdW,
    I realise now I have taken us in the wrong direction. apologies for that.
    History, this is not my code and I do not own the process and NOT my preferred method of using it. I was looking for a simple way to make subtle changes.
    What we do - We use these programs to collect data from typically 6 pressures and 6 temperature probes and capture RS232 / USB VISA strings from sensors.
    So every few weeks / months or up to a year we rearrange each sensor location to suit the new process. I did not write the code. I cannot change the procedure too much without resistance.
    So headers in the CSV file have the DaqMX string passed through the code. Great.
    Other data to the CSV file comes from calculations or extracted from the VISA string. Hence why we have headers with "Untitled 1 ()". These values also go to a History Chart.
    So I was looking for a simple way to read the the local variable label as it is always linked to the front page indicator. People can cope with editing the indicator label, save the VI and hit run.
    TL;DR - GerdW is now a psychologist.
    Attachments:
    data to csv and history chart.png ‏1043 KB

  • Can anyone give me simple instructions on how to use more than one ipod on the same computer with itunes? Both my daughters have ipods, my wife has one

    Dear All
    Can anyone give me simple instructions on how to use more than one ipod on the same computer with itunes. My daughters have a different generation 'nano' each & my wife a 'shuffle'?
    Many thanks

    Click here for options.
    (69081)

  • I recieved an Adobe Master Collection License number from my school (Stevens Institute of Technology) and I can't figure out how to use it in order to get the product. I've created a username and that's as far as I've gotten.

    I recieved an Adobe Master Collection License number from my school (Stevens Institute of Technology) and I can't figure out how to use it in order to get the product. I've created a username and that's as far as I've gotten. I need to download the product and I can't figure out where to begin.

    Ask someone at your school... Do you have a Cloud redemption code, or a CS6 serial number?
    If Cloud, Redemption Code http://helpx.adobe.com/x-productkb/global/redemption-code-help.html and
    http://www.adobe.com/products/creativecloud/faq.html
    http://helpx.adobe.com/creative-cloud/help/install-apps.html to install or uninstall
    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    What it is http://helpx.adobe.com/creative-cloud/help/creative-cloud-desktop.html
    Cloud Getting Started https://helpx.adobe.com/creative-cloud.html
    If CS6, download at Other downloads and enter your serial number when prompted
    Again... your 1st resource is your school

  • How to use setFireActionForSubmit with parameters and capture the parameter

    Hi,
    Can anyone explain how to use setFireActionForSubmit.
    I am extending the Controller of ShoppingCartPG. In the extended controller processRequest method I am adding a button to the table and setting up the setFireActionForSubmit, so when the button is pressed it raises the event associated with the setFireActionForSubmit.
    I need to pass the RequisitionLineId as a parameter which is present in the VO associated with the ShoppingCartPG.
    I have used the following code in processRequest
    =================================
    public void processRequest(OAPageContext paramOAPageContext, OAWebBean paramOAWebBean)
    super.processRequest(paramOAPageContext, paramOAWebBean);
    OATableBean otbRN=(OATableBean)paramOAWebBean.findIndexedChildRecursive("ItemTableRN");
    OASubmitButtonBean oasb= (OASubmitButtonBean)paramOAPageContext.getWebBeanFactory().createWebBean(paramOAPageContext,"BUTTON_SUBMIT");
    oasb.setID("addnInfo");
    oasb.setUINodeName("addnInfo");
    oasb.setText("Additional Info");
    String pageName = paramOAPageContext.getRootRegionCode();
    Hashtable params = new Hashtable (1);
    params.put ("param1", pageName);
    Hashtable paramsWithBinds = new Hashtable(1);
    paramsWithBinds.put ("param2", new OADataBoundValueFireActionURL(oasb, "${oa.encrypt.current.RequisitionLineId}"));
    oasb.setFireActionForSubmit("addnInfoEvent",params,paramsWithBinds,false,false);
    otbRN.addIndexedChild(oasb);
    =================================
    And in processFormRequest method I am capturing the event "addnInfoEvent" and trying to capture the RequisitionLineId which I have passed it as a parameter.
    This is the code I have used in processFormRequest.
    =================================
    public void processFormRequest(OAPageContext paramOAPageContext, OAWebBean paramOAWebBean)
    super.processFormRequest(paramOAPageContext, paramOAWebBean);
    OAApplicationModule localOAApplicationModule = paramOAPageContext.getApplicationModule(paramOAWebBean);
    String strEvent= paramOAPageContext.getParameter(EVENT_PARAM) ;
    if ("addnInfoEvent".equals(strEvent))
    Number localNumber = 0;
    try {
    localNumber = new Integer(ClientUtil.getDecryptedParameter(paramOAPageContext, "param2"));
    catch (Exception e) {e.printStackTrace();}
    String outmsg="Line ID : " + localNumber + ":" + strEvent;
    throw new OAException(outmsg,OAException.INFORMATION);
    =================================
    But I am not able to capture the RequisitionLineId which I have sent as a parameter.
    Can anyone let me know what I am doing wrong.

    Hi,
    This is the requested HTML Code
    ===============================
    <button id="N3:addnInfo:0" class="x7g" style="background-image:url(/OA_HTML/cabo/images/swan/btn-bg1.gif)" onclick="return _chain('submitForm(\'DefaultFormName\',1,{\'param1\':\'${oa.encrypt.current.RequisitionLineId}\',\'serverValidate\':\'1\',\'param2\':\'${oa.encrypt.current.RequisitionLineId}\',event:\'addnInfoEvent\',source:\'N3:addnInfo:0\'});return false;',*'submitForm*(\'DefaultFormName\',1,{\'_FORM_SUBMIT_BUTTON\':\'N34\'});return false',this,event,true)" type="submit">Additional Info</button>
    ===============================
    Hi I am not able to paste the HTML Code..some parts of HTML gets removed automatically when I paste it in the forum.
    Regards,
    Rohit

  • [svn:bz-trunk] 17010: Bug: Watson #2652870 - use a property file to drive the custom configuration tokens as opposed to setting it in the command line

    Revision: 17010
    Revision: 17010
    Author:   [email protected]
    Date:     2010-07-22 02:52:41 -0700 (Thu, 22 Jul 2010)
    Log Message:
    Bug: Watson #2652870 - use a property file to drive the custom configuration tokens as opposed to setting it in the command line
    QA: Yes
    Doc: Yes - in custom tokens section, talk about the new token.file option
    Checkintests: Pass
    Details: Changed TokenReplacer to look for a token.file JVM option. If it's specified (eg. -Dtoken.file=/User/matamel/Desktop/token.properties), then TokenReplacer looks for a properties file where token name and values are specified. This allows someone to specify a file for custom tokens. Custom tokens can still be specified as straight JVM option and in case where a token is defined both as a JVM option and in a token properties file, JVM option takes precedence.
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/config/TokenReplacer.java

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • How to use common resource bundle across all the development components ?

    Hi,
    I am working on SAP NetWeaver Developer Studio - JAVA
    How to use common resource bundle across all the development components ?
    Description :
    I have a requirement of creating a resource bundle (resource.properties) and use that common resource bundle in all the development components.
    Can we create a  development component (war and ear both) and create only resource.properties in this development component( DC ) and create the dependency of the same DC  in all the other DCs ?
    Thanks,
    Neha

    Hello Neha 
    This question is more NWDS related.
    You may have a better chance of someone answering the thread under
    SAP Netweaver -> SAP NetWeaver Development Infrastructure (NWDI, formerly known as JDI) forum
    Thanks
    Kenny

  • How to use my findTheHighest method to find the highest value in my two dim

    I am going to create a 13row by 10 colume two dimensional array.
    how to use my findTheHighest method to find the highest value in my two dimensional array.
    .When i compile this program , i got those as following;
    "Exception in thread "main" java.lang.ArrayIndexOutOfBoundsExce
    at TaxEvolution.findTheHighest(TaxEvolution.java:31)
    at TaxEvolutionClient.main(TaxEvolutionClient.java:25)"
    public class TaxEvolution{
    public double[][] salesTaxRates;
    public TaxEvolution()
      salesTaxRates = new double[13][10];
      fillProvinTaxRates();
    private void fillProvinTaxRates()
      for ( int row = 0; row < salesTaxRates.length; row++ )
        for ( int column = 0; column < salesTaxRates[row].length; column++ )
          salesTaxRates[row][column]= (int)(Math.random()*5000) + 1;
    public double findTheHighest()
        double highest = salesTaxRates[0][0];
        for ( int row = 0; row <= salesTaxRates.length; row++ )
          for ( int column = 0; column <= salesTaxRates[row].length; column++ )
             if ( salesTaxRates[row][column] >= highest )
                   highest = salesTaxRates[row][column];
        return highest;   
    public double[][] arrayTaxEvolution()
      double[][] returnTaxRates = new double[13][10];
      for ( int row = 0; row < salesTaxRates.length; row++ )
        for ( int column = 0; column < salesTaxRates[row].length; column++ )
          returnTaxRates = salesTaxRates;
      return returnTaxRates;
    public class TaxEvolutionClient{
    public static void main( String[] args ){
      TaxEvolution protaxRateList = new TaxEvolution();
      double[][] taxRateList = protaxRateList.arrayTaxEvolution();
        for ( int i = 0; i < taxRateList.length; i++ )
          for ( int j = 0; j < taxRateList[0].length; j++ )
            System.out.print( taxRateList[i][j] + "\t" );               
            System.out.print( protaxRateList.findTheHighest + "\t" );
    }

    Multiposted
    http://forum.java.sun.com/thread.jspa?threadID=699057&tstart=0

  • How to use parallel flowed subforms begining at the same position.

    How to use parallel flowed subforms begining at the same position in my form.
    Ex
    Subform1
    Subform2
    Subform3
    DropDownList1
    DropDownList1
    DropDownList1
    I would like to repeat  with a button the 3 subforms in parallel
    Subform1
    Subform2
    Subform3
    DropDownList1
    DropDownList1
    DropDownList1
    Subform1
    Subform2
    Subform3
    DropDownList1
    DropDownList1
    DropDownList1

    Post your question in the LiveCycle Designer forum.

  • How to use a pull down menu after the 2.0 update

    Hi,
    I'm looking for help on how to use a pull down menu after the latest update. The method I was using before no longer works and it's driving me crazy.
    Has anyone else had this problem and figure out a new way?! 
    I was holding my finger down on the pull down menu and waiting for the options menu to pop up, I'd push cancel and the menu would stay. This no longer works.

    Also would love to know plz

  • HT201250 How to Use One Time Machine External Drive to Back Up Two Macs

    How do I set up two computers -- an iMac and a MacBook, both running Mountain Lion -- to use a single external hard drive for Time Machine backups?
    Both are on an Airport Extreme network

    Yes, it does.
    I took it from there and the iMac is now backing up its contents on the HD.
    Thanks very much for your knowledgeable and prompt help.
    Best regards,
    ed

  • How to use USB Flash Key Pen Drive in Sun Ray?

    Hello gentlemen,
    Can anyone help me witn USB Flash Key Pen Drive in Sun Ray?
    Every Sun Ray appliance has USB-ports and ammount of them more than default USB-set: Keyboard+mouse.
    The idea: to use one of the rest USB-ports in appliance for USB Flash Key Pen Drive.
    I've tried to find the solution in Sun Ray Documents.
    The result was "zero".
    Can anybody answers the following questions too :
    1. Generaly speaking, is it possible to use USB Flash Key Pen Drive under Solaris/Sun Ray Server Soft?
    2. If exists compatibility list of "Solaris Sun Ray Configurations - USB Flash Key Pen Drive Models" - how can I see it?
    3. Is there anywhere resources on USB Flash Key Pen Drive connection under SPARC-Solaris?
    Thanks in advance!
    Vladimir.

    http://wiki.archlinux.org/index.php/AutoFS_HowTo might be interesting

  • HT201250 How to use time machine external hard drive on other devices

    I have an external hard drive which i usually use to back up my macbook pro via time machine but if i put pictures or songs on the external hard drive and connect it to a gaming concole or a pc nothing happens. The concole and pc doesn't recognize the device. Is there anything i can do to make it so i can access files from other devices while still using it for time machine?

    The external drive is Mac formatted for Time Machine. Your gaming console and PC won't be able to read its format.
    If you are determined to use it for both purposes, you can partition the drive in Disk Utility. Format the PC partition for MS-DOS or whatever is required for your gaming console. You may or may not have sufficient space for both partitions. If you do not you will have to erase your Time Machine backups.

  • How-to: Using Photoshop CS5 on external drive

    If you've installed Photoshop CS5 on an external hard drive, you might experience crashes. This is due to these drives automatically going to sleep mode after a few minutes. Some drives allow you to modify the sleep mode settings; however, many others don't let you change these presets.
    One solution: On Windows, use a program such as NoSleep to prevent the drive from going to sleep. To save energy, once you've shut down Photoshop, you can disable the NoSleep program and your external drive will once again use its default sleep mode. The program puts a convenient item in your system tray.
    Here's a similar solution for OS X.

    Small hard drive? Split your iTunes library across multiple volumes - http://www.macyourself.com/2009/04/24/small-hard-drive-split-your-itunes-library -across-multiple-volumes/  - copying media folders to external, then deleting from internal, then adding again.
    Splitting & Managing Your iTunes Library - http://machintsandtips.com/i-j-k/itunes/splitting-managing-your-itunes-library/ - using option+drag to override iTunes from copying file to your default media folder.
    https://discussions.apple.com/message/10160819#10160819 - Change location of media folder to start putting files on second drive.  Note later follow-up post about leaving 'organize media' and 'copy to drive' checked.
    TuneSpan: (OS X app) A utility that allows you to distribute the media files in your iTunes Library across multiple drives. - http://tunespan.com/ - https://itunes.apple.com/us/app/tunespan/id528459889?mt=12 - Requirements: OS X 10.6.6 or later, 64-bit processor

  • I am a school administrator. I want to know if anyone knows how to use an ipad wireless hard drive as a storage device for individual student work files  that are only accessible to the student or teacher?

    I need to use an ipad wireless hard drive as a storage device. I want the student to do work on the iPad , then save it securely on the hard drive, then be able to go back and get the file and continue working on it. Can this be done?

    We use google apps for education with the google drive ipad app
    The google drive editor is basic.   But it meets our needs.   Students go to the app called "google drive".  They logon and start a document on an iPad and then edit again using almost any device anywhere(home or school): ipad, windows7, mac, android.    
    We setup each student account with folders for each teacher.  Students can move documents into their teacher folder, and then the teacher can edit in real time with the studnet.   It's like a multi player editor. 
    There's no quick fix to allow students using ipads to save work, then revise alone or with the help of a teacher.
    You could also use skydrive, dropbox, or filebrowser, but the ability of ipad apps to edit and save revisions is spotty.  It depends if that app developer has added support.  You can see your MS Word doc files with those tools, but I don't know if you can edit the DOCX file, then save back to DOCX  files.

Maybe you are looking for

  • HT1338 Trying to update software, but system appears to be hung up. it just sits.

    I am trying to update my software, but it seems to be hung up, I have tried shutting down and rebooting didn't help.  I also cannot access Mail from my App tool,??

  • Why are all my Playlists Combined?

    I just noticed that most of my Playlists on iTunes (10.6.3) have been combined into just two Smart Playlists. I used to have categories for male vocal, female vocal, rock, classical, etc., and sub-categories for individual artists. Now on iTunes on m

  • Custom XML ivew transformers

    Hi All,      i am trying to create a XML iview and want to hook up a custom xml transformer(an XSLT) to the XML source. but i am unable to get the right kind of documentation to do this. I tried http://help.sap.com/saphelp_nw04/helpdata/en/18/42de41f

  • User preferences no boot...

    Hi i got a big trouble First at all, sorry for my english level For introduce you: I bought in january a MacPro, and i took all my configuration from and older MacPro 1,1 Sincera then the computer worked well but i felt that i wasn't the administrato

  • Apple TV Gen 2 downloading movies issue?

    Hi, I was given the new apple tv gen2 for my bday in January, after seeing my brother's apple tv gen1. Unfortunately, I have found it  is nothing like the gen1, and am thoroughly disappointed. I have unusually long download times (once was 1200mins!!