How to clear power up reset states?

Hi everybody,
I'm facing a problem with the motion control system, the system kept contiune showing us that the system is in power up state. we run the clear power up reset state program but we still could not solve the problem. Is there any other solution to provide me to solve this problem. what are the problem that actually cause this error state? this problem dose it related to our hardware connection or software setting?
thanks for helping.. really need the help...

Hey Kuroro,
Usually when you call and run the clear power up reset state program, it should take care of resetting the state of the board. The next step to try is after you have run the clear power up reset state is to initialize the board itself. Go ahead and try to reinitialize the board after you call this clear power reset state program. You can either initialize the board in the Measurement and Automation Explorer, or you can use the function in Labview to do this. You can just use the Initialize Controller VI to do this.
Please let me know if this works or not. Usually initiallizing the board after calling the Clear Power up Reset State VI solves the issue. Keep me updated on what else is going on, i.e. what errors you are seeing or what else is going on with the hardware. Thanks, and have a great day.
Regards,
DJ
Applications Engineer
National Instruments

Similar Messages

  • How to clear the power up reset states

    my pci 7344 is  in the power up reset state. How to clear the power up reset state of an 7344 programmatically. Using clear power up reset state in block diagram doesnt seem to work. Give a possible solution

    This is the VI I use to initialize a motion controller. It clears the power up reset if needed and then initialize the controller with the specified configuration (previously created with MAX).
    Sorry for the french comments.
    Attachments:
    Initialiser interface avec gestion power up reset (LV8).vi ‏26 KB

  • How to clear cache & page reset when tab clicked

    Hello,
    I'm using Apex 40 and two tab level template.
    I would like to clear cache and reset pagination when 2nd level tab clicked
    Is there anyway to do that?
    Thanks.

    hlthanh wrote:
    Hello,
    I'm using Apex 40 and two tab level template.
    I would like to clear cache and reset pagination when 2nd level tab clicked
    Is there anyway to do that? Can we stick to standard APEX terminology: do you mean Parent Tab (2nd level up) or Standard Tab (2nd level down)?
    Parent Tabs allow this to be done directly using the Clear Cache property and reset pagination for this page checkbox for the Tab Target.
    For Standard Tabs, create Before Header processes on the tab target page:
    <li>Session State > Clear Cache...
    <li>Reset Pagination

  • 7334 - Dectecting Power Up Reset State

    I am writing an application in C/C++ to control stepper motors with an NI-7334.  I want to detect if the board is in the "PowerUp Reset State" and if so, initialize the card.  There doesn't seem to be a function to detect this.  Does anybody know a way to detect this?
    Thanks,
    Chris

    Excellent.
    Thank you Jochen.  You will probably be seeing a lot of questions from me.  I am just getting started using these products and I am sure I will need lot's of information.
    Chris

  • HT3964 Does anyone know how to restore power if resetting the SMC doesn't work?

    I followed the instructions for resetting the SMC; however, my laptop still doesn't power up all the way.  I can hear a fan coming on, and the motor of the CD drive turning, but the screen doesn't come on, the keyboard doesn't light.  My computer was working pretty normal yesterday afternoon, and when I returned to it in the evening, it was completely unresponsive.  I am not very technically savvy, so any help is much appreciated.

    I didn't not get the happy chime.  :-( 
    And thank you for the reference to the Apple store, I will make an appointment and hold my breath!
    Thank you all for your quick responses.

  • Clear power up status question

    Hi,
    I have been using NI-Motion controller 7334 along with UMI-7764 for a while.  Today the error 70072 "The FlexMotion controller is in power up reset
    state. Please execute the Clear Power Up Status function or VI before
    sending any commands to the controller" was reported when I tried to execute my application VI. What could have happened to cause this error suddenly?
    I initialized the controller using measurement and automation program.  After this initialization, the error is gone and stepping motors move, but other functions do not work in my application VI.  If I restart the computer, the error returns.  Also, the stepping motors move when computer is OFF. I am not sure if I am doing the correct procedure to clear power up status.
    Any help to resolve this issue is appreciated!
    Just to give an idea about my knowledge level, I am not familiar with LabView programming.
    Thanks!

    Hello Sameer,
    Attached VI will :
    Check if the controller is in the Power Up Reset state
    Clear the Power Up Reset state if needed
    Initialize the controller. Settings Name must be an existing motion configuration.
    Hope this helps
    Message Edité par JB le 10-22-2007 10:25 AM
    Attachments:
    Clear Power Up Reset if set.vi ‏23 KB
    Capture.jpg ‏76 KB

  • Base on Power up reset error

    Hello!
    I would like to ask a question. my motion controller after i put web browser program in it, it Red LED light up, that means got fault. now I can not find what is the fault. it said montion controller in Power Up Reset status, I can't clear it. after I initiallise it still not working. sometime it will generate a error code is 70072.
    Really need help. Got any solution to clear Power up reset status?
    Thank you!
    Kuroro

    Hi Kuroro,
    Thanks for posting on the forum, we will certainly do our best to help you out!
    The Power up reset error can typically be cleared in several different ways. First, it is often possible to clear this error by going to Measurement and Automation Explorer and Initializing your Motion controller hardware. When this doesn't help, sometimes the best way to clear this status is by running a LabVIEW VI that contains nothing but the "Clear Powerup Reset Status" VI. This VI can be found on the LabVIEW palette at All Functions>>NI Measurements >> Motion >> FlexMotion >> Advanced >> Clear powerup reset state.vi.
    One of these two things will hopefully resolve the problem you are experiencing. I am not sure what you mean when you say that you put a web browser program on your motion controller, but if you have any other questions, feel free to ask. As always, the more information the better!
    Hope this helps,
    Robert

  • In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    Thank you so much for your reply . . . but . . . I should have shared my original script with you -- it was a little more complicated than I led you to believer. I was triggering a group of text fields to become disabled as well as gray. Below is the original script so that when the checkbox is checked, it causes several "Co" fields to be disabled and gray.
    // Mouse Up script for check box 
    // If checked, certain fields should be disabled 
    var f_prefix = "Co"; 
    // Get a reference to all of the "Co" fields 
    var f = getField(f_prefix); 
    // Reset the Co fields 
    resetForm([f_prefix]); 
    if (event.target.value === "Off") { 
        // Enable the Co fields 
        f.readonly = false; 
        f.fillColor = color.transparent; 
    } else { 
        // Disable the Co fields 
        f.readonly = true; 
        f.fillColor = color.gray; 
    To recap -- my goal is to get those gray fields to revert to transparent if the form is reset. I'm willing to create my own custom "Reset Form" button but I'm not sure I understand how that would look. Wouldn't it be quite lengthy? I think I'm having a brain freeze -- can't figure it out!

  • How to power on reset switches not responsive. IOS in a  loop?

    How can I do power-on reset on iPad wiht swtiches not responding.  IOS is active evident from rolling display colors and vertical bars.  If on analogue display, no vertical hold.  Tried power switch off for several seconds can not stop roll.  Tried two switches together, also not effective.  No indications that environment has changes.  Is IOS looping, or is there a hardware glitch.
    Just completed recommended IOS update. 

    Did you hold the home and power buttons 10-15 seconds till the screen turns black and the Apple logo appears ? When the logo appears release both buttons and wait for your iPad to start on it's own.

  • I did a clear data and reset on my ipod touch and upon restart it is frozen. How do I fix it?

    I did a clear data and reset on my ipod touch and upon restart it is frozen. How do I fix it? I have already done the ten second hold restart with the top button and bottom button, but it still freezes. What should I do?

    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    Finally, if the Restore doesn't work, let the battery drain completely.  Then recharge for at least an hour and Restore again.

  • 2.2 - How to do a Hard Reset

    So I was told to ask how to do a hard reset to try to fix my phone since the 2.2 update.
    Anyone?

    Resetting the phone deletes all data, including downloaded applications, and resets the phone back to its initial state—the state before you turned on the phone for the first time.
    Software v2.1 & v2.2 - Hard Reset Option 2
    Power device off
    Press and hold VOL Down and Power button at same time until screen displays with 3androids at the bottom.
    Press VOL down to highlight Clear Storage, press PWR Button to select option
    Clearstorage
    Delete All User Data?
    <VOL UP> YES
    <VOL DOWN> NO
    Master Reset: Allows user to reset device back to factory settings.
    Resetting the phone deletes all data, including downloaded applications, and resets the phone back to its initial state—the state before you turned on the phone for the first time.
    Important: Make sure to back up important data you have on the phone before you reset your device.
    (Software v2.2) To Factory reset the phone:
    Note: If device is non-responsive, try a soft reset first by removing battery and power on device.
    From the home screen, touch Menu 
    Touch Settings 
    Touch SD & phone storage 
    Touch Factory data reset 
    Tap Reset phone or Reset phone & internal storage 
    Tap Erase everything
    (Note: Reset may take anywhere from 1 - 10 minutes for reset and restart depending on amount of data on device.

  • How to clear text fields when the user navigates back to the screen

    Hi,
    Does anyone have any idea on how to clear the text input fields and dropdown boxes when the user navigates back to the screen, say for e.g. create screen?
    My issue is that i have plenty of fields in the create screen within a form. Is there a way to avoid programaticaly blanking out every field and just do it at the form level using an api to reset to a state before the user entry?
    Thanks

    This code allows you to make it more generic, and you would need to tweak it if there are more than TextInput controls, but it should provide some ideas.
    As far as using states, you could use SetProperty to set the text to empty, but that might be messier.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
      <mx:Script>
        <![CDATA[
          import mx.containers.FormItem;
          import mx.controls.TextInput;
          import mx.events.IndexChangedEvent;
          import mx.core.Container;
          private function clearSreen(evt:IndexChangedEvent):void{
            var view:Container = tn.selectedChild as Container;
            for each(var child:Object in view.getChildren()){
              if(child is FormItem){
                var subchild:DisplayObject = child.getChildAt(0);
                if(subchild is TextInput){
                  TextInput(subchild).text = "";
        ]]>
      </mx:Script>
      <mx:TabNavigator id="tn" resizeToContent="true"
        change="clearSreen(event)">
        <mx:Form id="frm1" label="View Number One">
          <mx:FormItem label="First name:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="Last name:">
            <mx:TextInput/>
          </mx:FormItem>
        </mx:Form>
        <mx:Form id="frm2" label="View Number Two">
          <mx:FormItem label="Address1:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="Address2:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="City:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="State:">
            <mx:TextInput/>
          </mx:FormItem>
          <mx:FormItem label="Zip code:">
            <mx:TextInput/>
          </mx:FormItem>
        </mx:Form>
      </mx:TabNavigator>
    </mx:Application>
    If this post answers your question or helps, please mark it as such. Thanks!
    http://www.stardustsystems.com
    Adobe Flex Development and Support Services

  • How to clear the field in APEX...?

    Can any body tell me how to clear or reset the fields in the user interface (APEX 4.0)...? i.e., page items... when i click reset button i want all the fields in my region to be cleared...
    thanks,
    - regards,
    Beginner...

    Create a new process, select "Session State" as process category. Select "Clear Cache for all Items on Pages (PageID,PageID,PageID)" as Process Type.
    Set the conditions to bind it to your button.
    Best Regards,
    Gokhan Atil
    If this question is answered, please mark appropriate posts as correct/helpful and the thread as closed. Thanks

  • How to clear a private static class attribute once it's been created?

    <pre>I'm working with an instance of a complex Class object that has been created using the function module <br>HRXSS_CAT_APPLICATION_INIT. The Class object that I am trying to work with is<br> CL_XSS_CAT_BUSINESS_LAYER and in particular its Static Private component attribute PROFILE.<br>
    The issue that I am having is that the first call of this function module creates and populates the Static Private component attribute, <br>PROFILE, for the instance of this Class and I do not know how to initialize it once it's been created. The PROFILE attribute is an <br>object reference to an instance of Class CL_XSS_CAT_PROFILE. <br>
    I want to reset/intialize this Static Private component. I can then call a Class Method with<br> different parameters so that it repopulates PROFILE with different attributes. <br>There is no Public method to do this in CL_XSS_CAT_BUSINESS_LAYER and even the Private method<br> INIT_PROFILE, the logic first checks to see if the PROFILE component is initial before creating a new PROFILE<br> object instance. All the Attributes of the CL_XSS_CAT_PROFILE object are Static and Private.
    <br>
    I would appreciate any insight anyone might have in how to reset/initialize this Class component attribute.<br><br>
    Thanks much,<br>
    <br>
    Graham<br>
    Sample code snippet is as follows:
    <br><br>
    DATA: lr_cats_application_rfc TYPE REF TO IF_XSS_CAT_APPLICATION_RFC,
    lr_core TYPE REF TO IF_XSS_PT_APPLICATION_CORE,
    lr_core TYPE REF TO CL_XSS_CAT_1_APPLICATION_CORE,
    lr_instance TYPE REF TO CL_XSS_CAT_APPLICATION,
    lr_business_layer TYPE REF TO CL_XSS_CAT_BUSINESS_LAYER,
    lr_profile TYPE REF TO CL_XSS_CAT_PROFILE,
    lr_profile_temp TYPE REF TO cl_xss_cat_profile.
    DATA: l_employee TYPE pernr_d.
    DATA: l_employee_tab TYPE rhxss_cat_employee_t.
    CASE im_command.
    WHEN 'DATESELECTION_PRVPERIOD'.
    *-> navigate to object component reference for CL_XSS_CAT_PROFILE instance
    lr_cats_application_rfc = im_ref_to_parameter_cache->REF_TO_APPLICATION.
    *-> navigate to object component reference for CL_XSS_CAT_1_APPLICATION_CORE
    lr_core ?= lr_cats_application_rfc->get_core( ).
    *-> navigate to object component reference for CL_XSS_CAT_BUSINESS_LAYER
    lr_business_layer = lr_core->business_layer.
    *-> navigate to object component reference for CL_XSS_CAT_PROFILE
    lr_profile = lr_business_layer->get_profile( ).
    l_employee = im_ref_to_parameter_cache->pernr.
    append l_employee to l_employee_tab.
    <br><br>
    *THIS IS WHERE I AM HAVING ISSUES...I WOULD LIKE TO CLEAR/INITIALIZE THE STATIC PRIVATE COMPONENT<br> LR_BUSINESS_LAYER->PROFILE BEFORE CALLING THE METHOD INITIALIZE_FOR_TIME_RECORDING<br>
    <br>
    <br><br>*THE FOLLOWING LINE FAILS ON A SYNTAX CHECK WITH 'FIELD "PROFILE" IS UNKNOWN. IT IS NEITHER IN <br>ONE OF THE *SPECIFIED TABLES NOR DEFINED BY A "DATA" STATEMENT
    <br>
    clear: lr_business_layer->profile.
    CALL METHOD lr_business_layer->initialize_for_time_recording
    EXPORTING
    im_employee_tab = l_employee_tab
    im_profile_id = 'MODAPPR1'
    im_startdate = sy-datum
    EXCEPTIONS
    pernr_not_enqueued = 1
    no_pernr_for_user_found = 2
    profile_not_found = 3.</pre>
    Edited by: Matt on Aug 1, 2009 12:44 PM

    OK...I apologize but I did not dig deep enough to see that the Enhancement Framework allows for the addition of Methods to Classes/Interfaces. Most of this ABAP OO stuff is still quite new to me so I'm struggling with syntax and what is and isn't possible based on how everything is declared. I guess now that I know I can do this I am having some problems understanding how singleton Class objects work and how to 'reset' them.
    The Class instance based on CL_XSS_CAT_BUSINESS_LAYER has a Static Private attribute PROFILE that is an object reference to the singleton Class instance CL_XSS_CAT_PROFILE.
    The singleton Class instance of CL_XSS_CAT_PROFILE has all of its attributes set to Static Private. If you look at this Class in SE80 you see that one of its attributes is also called PROFILE and is an object reference variable to itself.
    So the issue I am having is how to go about 'initializing' this singleton object so that I can 'recreate' this singleton object using a copy of the existing S
    I used the enhancement framework to create a copy of the CL_XSS_CAT_BUSINESS_PROFILE Instance Private Method INIT_PROFILE , called in INIT_PROFILE2, but I am not sure how to 'clear/reset' the instance of the CL_XSS_CAT_PROFILE object.
    Since PROFILE is an attribute of the CL_XSS_BUSINESS_LAYER object, I thought that a simple CLEAR PROFILE would reset the object but this is not the case. Within this method the FREE clears the value of the reference variable PROFILE but as soon as you step into the method me->init_profile, the value of PROFILE goes back to what it was. I need for all of the CL_XSS_CAT_PROFILE instance attributes to be reset or initialized so I can fill them again. I think I'm getting confused on the scope of things...should I be enhancing the CL_XSS_CAT_PROFILE Class with 'setter' methods so I can initialize all of the Static Private attributes that way instead of trying to clear all the attributes at a higher call level?
    Any assistance with helping me with my thought process or approach to this would be much appreciated.
    METHOD INIT_PROFILE2.
    FREE PROFILE.  >>> is reset but it does not carry through to next method call and does not clear all the attributes of the object referenced in PROFILE
    CALL METHOD me->init_profile
    EXPORTING
    IM_PROFILE_ID = im_profile_id
    etc...

  • How to clear Autocomplete text in Jquery.

    Hi All,
    I have implemented a Autocomplete text item using jquery.Every thing looks fine, but when we clear the country the corresponding state should be cleared.
    Here is the code, can any body hep me out where and how to clear the values.
    <script type="text/javascript">
    $( function() {
        $("#P16_ENG_CTRY").autocomplete({
            source : function( request , response) {
                            data = getCountry(request.term);
                            response( data );
            focus  : function(event , ui){
                        event.preventDefault();
    function getCountry(key)
       document.getElementById('P16_ENG_CTRY')=='';
       var ajaxRequest = new htmldb_Get( null , '&APP_ID.' , 'APPLICATION_PROCESS=GET_COUNTRY' , 0);
       ajaxRequest.add( 'G_MX01' , key);
       ajaxResult = ajaxRequest.get();
       return ((ajaxResult.length>0)? ajaxResult.split( '~' ):null);
    $( function() {
        $("#P16_ENG_STATE").autocomplete({
            source : function( request , response) {
                            data = getStateJ(request.term);
                            response( data );
            focus  : function(event , ui){
                        event.preventDefault();
    function getStateJ(key)
    document.getElementById('P16_ENG_STATE')=='';
          var ajaxRequest = new htmldb_Get( null , '&APP_ID.' , 'APPLICATION_PROCESS=GET_JSTATE' , 0);
              ajaxRequest.add('G_MX01',document.getElementById('P16_ENG_CTRY').value);       
              ajaxRequest.add( 'G_MX03' , key);
              ajaxResult = ajaxRequest.get();
       return ((ajaxResult.length>0)? ajaxResult.split( '~' ):null);
    $( function() {
        $("#P16_ENG_CITY").autocomplete({
            source : function( request , response) {
                            data = getCityJ(request.term);
                            response( data );
            focus  : function(event , ui){
                        event.preventDefault();
    });Thanks,
    Anoo..

    Thanks VC for a quick turn around, i have made changes like this which wroks fine but when i click the event outside then it is clearing the list fo state.
    Is it possible to clear when i had tried to remove the country manually the sate should clear at at time insted of click the event.
    <script type="text/javascript">
    $( function() {
        $("#P16_ENG_CTRY").autocomplete({     
            source : function( request , response) {
                            data = getCountry(request.term);
                            response( data );
            focus  : function(event , ui){
                        event.preventDefault();
            change : function(event,ui) {
                     if ($('P16_ENG_CTRY').val()==null || $('P16_ENG_CTRY').val()==""){
                  $("#P16_ENG_STATE").val('');}}  
    Thanks,
    Anoo..

Maybe you are looking for

  • Error while creating a planning connection in FR

    Hi John, I was creating a database connection to Planning from FR studio and encountered the following error Error connecting to database connection TestPln: Error: Error getting CSS support information for driver [com.hyperion.ap.hsp.HspAdmDriver] M

  • Can I use Adobe Creative Cloud on Ubuntu?

    Can I use Adobe Creative Cloud on Ubuntu?

  • IPod Touch and Windows Vista 64bit

    I got a new IPod Touch and when I try to connect it I get a window with this message: "This iPod cannot be used because the required software is not installed. Run the iTunes installer to remove iTunes, then install the 64-bit version of iTunes" Wher

  • Want to replace stock HDD with a 256GB SSD, have questions.

    Hi All, I am sure this has been asked a bunch of times, so forgive me if I ask again... I have a late 2010 MBP (Model A1278).  Currently the machine has 4gb of memory and a 256gb hard drive on it.  The machine is starting to show its age and is slowi

  • Add xml file to classpath

    Hi all, Can someone tell me how I can add a xml file to my class path. I have add some thirth party jar files to my application but I need also the license xml in my classpath. Kind regards, Richard