Accel data crazy when not in debug mode

hello
i am developing an app that uses accelerometer data
it has always worked ok while i buid it in debug configs
but when i started building in release or distribution it gets crazy readings
anybody elese experience this ?
tx in advance
nonnus

never found the base of the issue but i manage to avoid it

Similar Messages

  • Dll issue, works in release.exe but not in debug mode.

    I have an issue with a dll that was previously working in both released and in debug mode.  Now if I create a released .exe it functions.  If I run it in debug mode the call to the dll function never returns.  eventually whatever is occurring behind the scense prevents the released.exe from working also.    I do not know if I accidenatally changed a setting in the cvi compiler that broke the code.  Is there a way to default cvi2010 settings?

    You can go back to the default ADE settings by renaming the following registry key to something else (anything other than "10.0", it doesn't matter what):
    [HKEY_CURRENT_USER]\Software\National Instruments\CVI\10.0.
    I think it's best to rename it, rather than delete it, so that you can go back to your current settings any time you choose to. Make sure CVI is not running when you rename the key.
    After the rename, the first time you run CVI, it will prompt you if you want to copy the settings. Say no to that. At that point, CVI will create a new "10.0" key with the default settings in place.
    Once you're done with your investigation, if you prefer to go back to the settings you had, you can delete the new 10.0 and rename the previous key back to "10.0".

  • Firefox thinks Adobe Flash Plugin has crashed when running in debug mode! How do i get arround this?

    When testing my flex application in debug mode, my debug session is closed every time because Firefox thinks the flash plug-in has crashed.
    == This happened ==
    Every time Firefox opened
    == Firefox was updated with plugin-crash redundancy

    You can also set the pref dom.ipc.plugins.timeoutSecs to -1 to disable the timeout.

  • Query Governor - Summary Data - Only when not out of date?

    In Oracle Discoverer Desktop edition the user can choose how Summary Data are used:
    1. Always, when available
    2. Only when summary data are not out of date (stale)
    3. Never
    What exactly is the meaning of "Only when summary data are not out of date"?
    In previous versions of Discoverer you had the opportunity to specify how old (in days) summary tables were acceptable to you.
    (By the way: In the Danish translation of Discoverer the word "not" has been omitted, so you have the opportunity to use summary data only when they are out of date :-)
    Best regards
    Torben

    Actually it doesn't matter if you have Applecare or not because Apple simply isn't recognizing this as an issue even though multitudes of people have experienced it. If they don't see it as a problem, then they obviously don't have a solution, and so taking your laptop in through apple care is totally useless.
    I've talked to 3 customer support representatives over the phone and they all said they were 'unaware of the issue' and would not even attempt to help. It's very disappointing.

  • Ipod not recognized by computer or itunes when not in disk mode

    My ipod nano 6th gen. recently has stopped working.  I am able to charge it for a short amount of time but have to reset the ipod everytime I go to turn it on.  I wanted to update the software but when I plug it into my comp that I have previously updated this ipod on, it says that the device is not recognized.  I followed steps on the support page and discovered that the ipod is recognized as a device and as a ipod in disk mode but when I reset the ipod back to normal mode it is once again not recognized.  I don't have a problem with my comp or itunes when I connect my iphone or ipod touch so I'm trying to figure out how to get the ipod to work.  any suggestions.

    I have kind of the same problem with my 60gb ipod with colour display.
    everything was working fine up until last sunday when i plugged into my laptop and I got the 'folder with exclamation mark' icon
    i reset it and put it into disk mode but when i connect it to my laptop it doesnt turn up on itunes or windows. occasionally it will appear then disappear again so i can't restore it to factory settings.
    i did manage to get it to appear in itunes and click on the restore button but i got the message that it couldnt be restored and there was a problem with the 'firmware' but before i could try anything else it disappeard from itunes again.
    i have been told that the problem may be with my USB cable so i will buy another one at the weekend but if that doesnt work does anyone else have any ideas as i have tried nearly everything.
    i personally think my ipod caught me looking at my friends new 80gb video ipod and got jealous!!!!!
    Message was edited by: princesspurplehippy

  • Compatibility Mode Error when NOT in compatibility mode

    I have a Dell Studio XPS 16 running Windows 7 Ultimate (RTM, not RC). iTunes installs fine but I get this error when I open it:
    "iTunes.exe has been set to run in compatibility mode for an older version of Windows. For best results, turn off compatibility mode for iTUnes before you open it."
    Once you click OK, the program runs fine. But this still bothers me. Thoughts? Under the application's properties, compatibility mode is NOT selected.

    I'm getting the same thing, if you find a solution let me know!

  • Mid 2007 Macbook screen goes black when not in clamshell mode

    Worked like a charm until I started using my mini DVI adapter to hook it up to an external monitor. Now machine won't display anything (just a black screen) when its not hooked up to the adapter. Has to be a display issue since It will still boot and everything (I can tell because the sound and brightness controlls work), it just displays a black screen. Any help would be greatly appreciated. Thanks, Mike.

    Hello, M3Daz. 
    Thank you for visiting Apple Support Communities.
    Here are a couple troubleshooting steps that I would recommend trying.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/HT3964
    About NVRAM and PRAM
    http://support.apple.com/kb/HT1379
    Cheers,
    Jason H.

  • Mac pro parking hard disks when not in sleep mode

    I have noticed over the last 3 months or so HD's (2,3, and 4 ) are spinning down when I'm away from machine- even when I'm running logic 9 or other apps then spinning up as soon as I click on icons,apps etc .The computer is not asleep when this happens and the computer does sleep as expected under normal conditions.My energy settings are as normal -Screen sleep in 15 and computer sleep 1hr.
    Does any one have any thoughts I have recently done SMC- no difference and have updated to 10.6.8
    any thoughts would be appreciated
    Thanks

    Thanks
    "My energy settings are as normal -Screen sleep in 15 and computer sleep 1hr."Option put the hard disk to sleep when possible is un-checked.Gonna try p-ram

  • Web part throwing exception at run time but not in debug mode

    The below code is throwing exception at run time but does not throw exception while debugging in Visual Studio. This is really causing difficulty for me to detect the cause of exception. Below I have also placed the exception image for reference.
    namespace CheckforContractorLogin.VisualWebPart1
    public partial class VisualWebPart1UserControl : UserControl
    protected void Page_Load(object sender, EventArgs e)
    if (!IsPostBack)
    string loginName = string.Empty;
    string coc_url = string.Empty;
    SPQuery spQuery = new SPQuery();
    spQuery.Query = "<Where><Eq><FieldRef Name='LoginName' /><Value Type='Text'>" + currentUser + "</Value></Eq></Where>";
    Guid _spSiteID = SPContext.Current.Site.ID;
    Guid _spWebID = SPContext.Current.Site.OpenWeb().ID;
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite _spSite = new SPSite(_spSiteID))
    using (SPWeb _spWeb = _spSite.OpenWeb(_spWebID))
    //if user has already accepted the COC
    SPList getSPList = _spWeb.Lists["RedirectUrl"];
    SPListItemCollection getspItemColl = getSPList.Items;
    foreach (SPListItem item in getspItemColl)
    if (Convert.ToString(item["Title"]) == "Policy Acceptance")
    coc_url = Convert.ToString(item["Url"]);
    SPList spList = _spWeb.Lists["Policy Acceptance Status"];
    SPListItemCollection spItemColl = spList.GetItems(spQuery);
    bool result = getADUserInfo();
    if ((spItemColl.Count == 0) && (result))
    Response.Redirect(coc_url);
    protected string currentUser
    get
    string currentUser1 = HttpContext.Current.User.Identity.ToString();
    int index = currentUser1.IndexOf("\\") + 1;
    string currentLoginUser = currentUser1.Substring(index);
    return currentLoginUser;
    protected bool getADUserInfo()
    DirectoryEntry dentry = null;
    DirectorySearcher dsearcher = null;
    string ldap = string.Empty;
    string empID = string.Empty;
    string _empID = string.Empty;
    try
    Guid spSiteGUID = SPContext.Current.Site.ID;
    Guid spWebGUID = SPContext.Current.Site.OpenWeb().ID;
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite elevatedSiteColl = new SPSite(spSiteGUID))
    using (SPWeb elevatedWeb = elevatedSiteColl.OpenWeb(spWebGUID))
    SPList spList = elevatedWeb.Lists["LDAP_Paths"];
    SPQuery spQuery = new SPQuery();
    spQuery.Query = "<Where><Eq><FieldRef Name='OU'/>"
    + "<Value Type='Text'>QD</Value></Eq></Where>";
    SPListItem spItem = spList.GetItemById(1);
    ldap = spItem["Path"].ToString();
    dentry = new DirectoryEntry();
    dentry.Path = ldap;
    dentry.Username = "******\\sp_admin";
    dentry.Password = "******";
    dsearcher = new DirectorySearcher(dentry);
    dsearcher.Filter = String.Format("(&(ObjectCategory=Person)(sAMAccountName=" + currentUser + "))");
    SearchResult searchResult = dsearcher.FindOne();
    dentry = searchResult.GetDirectoryEntry();
    if (searchResult != null)
    if (dentry.Properties.Contains("physicalDeliveryOfficeName"))
    empID = dentry.Properties["physicalDeliveryOfficeName"][0].ToString();
    if (empID.Contains("QA-"))
    return true;
    else
    return false;
    catch (Exception e)
    throw e;
    finally
    dentry.Close();
    dentry.Dispose();
    dsearcher.Dispose();

    Hi Zakir,
    I am not sure but it would be nice if you can do following
    Try search ULS log with correlation id and find exact error and share here. If not able to find do following
    Or in catch block write
    Response.Write(ex.ToString());
    and check what exception its giving.

  • How to use SNMP to access interface counters for WAN port when not in bridged mode

    Hi All,
    Can't fault my timecapsule, however just struggling to get one little bit of functionality working.  I'm keen to get access to the WAN port interface counter information via SNMP, so I can track total bandwidth/throughput & also volume. 
    I have no issue getting SNMP to work & can see the 2.4 & 5.0GHz network counters, also total number of WIFI clients, wlan0, wlan1 and bridge0 interfaces.  Trouble is none of these are the WAN/external ethernet port.
    I see that it is likely that I'm trying to find the vlan1 port, however from what I'm reading this may only be available when the device is running in a routed mode (I'm running in bridge mode).
    Anyone able to suggest anything?

    Some cable modem you can turn off NAT.. and then use the TC in router mode.. or even use DMZ if the cable router allows that.
    Have you ever looked at gargoyle router firmware and its ability to count and quota all clients connecting to internet service.. it is a simply fantastic firmware and can be loaded onto a router that costs $70-130 dollars.. it is 3rd party but very solid if you choose the right combo.
    http://www.gargoyle-router.com/wiki/doku.php?id=screenshots

  • Speaker on LG Octane not working when not in speaker mode

    When I get a call I have to take it in speaker mode because I can't hear anything with the phone closed. When I open it and it's in speakerphone mode I can hear the call. I've tried cleaning the phone many times, doesn't help.

    Have you recently used a headset or plugged in earphones?  There were issues with the phone still thinking the headset was plugged in - try plugging it in again and removing it carefully - or perhaps a battery pull to reset it  and it will go back to non-headset mode.

  • Can not enable Debugging Mode in NWDS 7.2

    Hi,
            I install SAP CE7.2 and NWDS 7.2.. I'd like to debug the WebDynPro App. So i set-up the setting for system instance in AS JAVA-Config Tool as the following :
    - DebugMode : true
    - DebugPort : 1024
    - Debuggable : true
             After that i restart it and come back to NWDS and go to Run -> Debug Configuration and choose Remote Java Application(Can not found WebDynPro App as the tutorial in the board). I set the parameter as following :
    - Host : localhost
    - Port : 1024
            The error message show that 'Failed to connect to remote VM. Connection timed out.org.eclipse.jdi.TimeoutException'. How can i fix this issue. Please suggest me.
    Thank you very much.

    Hi,
    A couple of things jump to mind:
    - Have you added your SAP CE server to NWDS server list?
    - If I'm correct, you should use Debug -> SAP Application, and from there you could define your WD application debug configuration
    In NWDS, open SAP Management Console perspective, from the process table select your debuggable server node, and hit 'Start debug session'
    Hope this helps
    Robin

  • Error when compiling in debug mode

    I receive an error when i try to ORA-04021 timeout occurred while waiting to lock object stringstringstringstringstring
    Cause: While waiting to lock a library object, a timeout is occurred.
    Action: Retry the operation later.

    I receive an error when i try to compile a package :
    ORA-04021 timeout occurred while waiting to lock object stringstringstringstringstring
    ....thanks for your help

  • Displaying a data error when NOT in use...

    So the phone is in my pocket and as I'm listening to some MP3s this error pops up. It happens randomly and usually when the phone is in my pocket. So if I'm in a meeting and it vibrates... I'm inclined to pick it up and see if it's a text or something. Then... I see this... and it sucks. I can understand if I'm trying to use an app or attempting to refresh my email... but just sitting in my pocket... it's very annoying because I'm inclined to pick it up.
    Post relates to: Pre p100eww (Sprint)

    I thank it has to do with the sprint network. Because I just got my palm pre replaced to day and my new pre is doing it too and my old pre started doin it recently it may be something on sprints side 

  • I have an lg g2 that keeps kicking me out of my work wifi. I have used the same wifi for months with no problems until this week. If I boot up in safe mode it works fine. When not in safe mode as soon as it connects it kicks me right out. If I try to forg

    The signal is always strong and nobody else has any problems with it.

    The signal is always strong and nobody else has any problems with it.

Maybe you are looking for