Speedfan on Neo2: 12V listed as 12.40 - bug?

Anybody with a neo2 that can read their 12V @ Speedfan?
Please list them here.
Thanks!

Other apps than Core Center report odd volt readings on Neo2 Platinum, rely on BIOS and Core Center app readings (even if NONE are true, rig is stable . I've also got high 12V read, some other readings are LOW outside Core Center.."normal")
vcore reading is a mess...how many different apps read so different values (Everest, CPU-Z, MBM, CC etc) ? HOW is that ? Also some calculation value ???
Adding +5% (or what it is numbered in BIOS for vcore) I get the most stable readout in Windows, doesnt fluctuate at all/much...adding plain 1.475 makes readout fluctuate some.
for the record: been playing all day with 11x230 with lowered timings Trc to 11 (12), Trfc to 20 (24) know it's stable until I use Prime95 more than 6 hours..

Similar Messages

  • [svn:fx-trunk] 13362: List mouse click selection bug fix

    Revision: 13362
    Revision: 13362
    Author:   [email protected]
    Date:     2010-01-07 17:22:41 -0800 (Thu, 07 Jan 2010)
    Log Message:
    List mouse click selection bug fix
    SDK-24963 - Mouse click is ignored by List if  allowMultipleSelection="true" in some cases
    Updated setSelectedIndices to perform the single index equality check if selectedIndices has only one index.
    QE notes: None
    Doc notes: None
    Bugs: SDK-24963
    Reviewer: Ryan
    Tests run: checkintests, List
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24963
        http://bugs.adobe.com/jira/browse/SDK-24963
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/List.as

  • MSI K8N NEO2 Bios listing

    http://www.bio-driver.com/downloads/pafiledb.php?action=category&id=6
    Hope this helps anyone looking for a bios!

    for future reference you can goto my site at http://www.maksys.biz/comcentral add the bios file to a post as an attachment in this section - the poster will need to register first (takes 2 minutes)
    http://www.maksys.biz/comcentral/forumdisplay.php?f=18
    everyone will be able to download it as soon as it is posted.. (no registration needed!!!)
    How to attact files:
    http://www.maksys.biz/comcentral/faq.php?s=&do=search&q=attach&match=all&titlesonly=0
    thanks!

  • TextInput in List, is it a Bug?

    Hi all,
    I need to have a TextInput inside a List component because I want the user to be able to change the name of the list item while viewing it. The problem is that the spacebar doesn't get captured. In other words a TextInput in a list works fine untill you want a space in what ever you are typing.
    Can anyone offer a suggestion on how to fix this or get around it?
    Thanks
    Here's the code I'm using.
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo">
        <s:List id="list" >
            <s:itemRenderer>
                <fx:Component>
                    <s:ItemRenderer>
                        <s:states>
                            <s:State name="normal" />
                            <s:State name="hovered" />
                            <s:State name="selected" />
                        </s:states>                   
                        <s:TextInput id="nameLabel" text="{data.lastName}, {data.firstName}"/>                   
                    </s:ItemRenderer>
                </fx:Component>
            </s:itemRenderer>
            <s:dataProvider>
                <s:ArrayList>
                    <fx:Object firstName="Ann"  lastName="Green" />
                    <fx:Object firstName="Tom"  lastName="Smith" />
                    <fx:Object firstName="John" lastName="Black" />
                    <fx:Object firstName="Jane" lastName="White" />
                    <fx:Object firstName="Bill" lastName="Jones" />
                </s:ArrayList>
            </s:dataProvider>
        </s:List>
    </s:WindowedApplication>

    Update,
    If I create my own list that extends the SDK's list and if I override the findKey function so it looks like this:
    override protected function findKey(eventCode:int) : Boolean
                var tmpCode:int = eventCode;
                return tmpCode >= 32 &&
                   tmpCode <= 126 &&
                   findString(String.fromCharCode(tmpCode));
    instead of this:
    override protected function findKey(eventCode:int) : Boolean
                var tmpCode:int = eventCode;
                return tmpCode >= 33 &&
                   tmpCode <= 126 &&
                   findString(String.fromCharCode(tmpCode));
    Then using the space bar in the text input in the list works.

  • Javascript API, Get List PropertyBag, SP2013 Persmissions Bug?

    Hey,
    i want to read the propertybag out of a SPLIST Object via javascript api.
    The PropertyBag is stored in the rootfolder, so you can access it, but NOT! when the user has only read permissions on the website.
    The exact List Permission to read a PropertyBag for Lists is "Manage Lists" for the javascript API
    var listInfoCollection = clientContext.loadQuery(oWebsite.get_lists(), "Include(Title,Id,ParentWebUrl,BaseTemplate,RootFolder.ServerRelativeUrl, RootFolder.Properties)");
    Can anyone tell me another way to retrieve List PropertyBag via javascript?

    Did you try using export import method in property bag setting?
    http://pbs2013.codeplex.com/

  • 9.0.5.1: List of fixed / known bugs / changes available?

    For 9.0.5.1 could you please provide a list of
    1. bugs fixed
    2. known bugs or new bugs
    3. changes that are not mentioned in the readme or one of the blogs
    compared to 9.0.3.3 or 9.0.4?
    This would make it easier to check if we can migrate to 9.0.5.1 (or have to wait for 9.0.5.2) and give my manager a better base to decide.
    Thanks, Markus

    Hi Markus,
    Hope the release notes available in the JDeveloper 'Help --> Release Notes' and the Technical papers available in OTN like 'New Features available in JDeveloper10g' (http://otn.oracle.com/products/jdev/collateral/collatoral10g.html) may give you clear picture about this.
    Thanks.
    Siva.

  • Possible List Drag and Drop bug

    Hi all,
    I am using a spark.components.List that I wish the user to be able to reorder by dragging and dropping. Therefore I have dragEnabled,dropEnabled and dragMoveEnabled all set to true.
    I have a custom item renderer that has two states ('default' and 'notDefault' for the sake of argument) that the list uses. The currentState of the item renderer is determined by the data it is given.
    When items are moved around they do get reordered correctly, however if I have an item in the 'notDefault' state and drag it somewhere it ends up rendered in the 'default' state after dragging, even if the data it is displaying requires the 'notDefault' state. What is more frustrating is that the item renderer reports its currentState as 'notDefault' even though it is showing 'default'.
    The difference between the two states is that there is a VGroup with controls in it excluded from the 'default' state, and therefore if these are displayed before dragging (ie we are in the 'notDefault' state) they are consequently not displayed after dragging.
    Anybody have any ideas?

    Might be a bug.  File a bug or post a simple test case.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Delete Ghost Mailing List User (Mailman Config Bug)

    I recently did something stupid. On the up side, I recognized that it was stupid right after I did it, but unfortunately my effort to undo what I did wasn't fast enough to correct the following issue. First, here's what I did:
    I added a new group with the same name as an existing user.
    Immediately after thinking about it and determining that this was probably a really bad idea, I deleted the group.
    I thought everything was working fine until I realized that email was not coming in to the email address of the aforementioned user (the user that I had created a group of the same name)
    Fortunately, I figured out the problem and a temporary fix. The purpose of this post is two fold: first, to submit what I believe is a bug, and secondly to figure out a way to permanently fix this issue on my system.
    I have determined what happened on my system is this:
    a mailing list group of the same name as my existing user was created thus diverting mail from that user to a now non-existant mailing list user. That results in the List Server Log reading the following when an email is sent to the user in question:
    list_server_post[16378] <Error>: missing list GUID
    Here's what I believe is a BUG: OS X Server 4.0 did not delete the mailing list group when I deleted the group. Now that's probably understandable because it's probably a protection against also deleting my user of the same name as a precaution, but it's not the expected behavior nonetheless.
    Here's where I need help: In searching through various config files, I've determined that there entries located in /Library/Server/Mail/config/listserver/prefs which correspond to various lists (including my ghost list). I've also determined that /Library/Server/Mail/Data/listserver/aliases contains the references to the list that postfix uses to handle delivery. Unfortunately, according to the contents of /Library/Server/Mail/Data/listserver/aliases/list_server_virtual these files are generated "automatically" so deleting them does not rectify the problem. My assumption is that these files are generated from Open Directory, but for the life of me, I can't figure out what entry. In any case, I need assistance deleting the entry which should no longer be present. Any help would be GREATLY appreciated.
    In the meantime, I have successfully worked around this problem by issuing:
    sudo  /Applications/Server.app/Contents/ServerRoot/usr/sbin/serverctl disable  service=com.apple.list_server_mgr
    which, of course, disables the list server (which I don't need), but I'm afraid it will be re-enabled if I restart (maybe I'm wrong about that, but I'd prefer to get to the root of the problem so it doesn't pop back up and bite me in the future).
    Thanks in advance!

    Where would the error be sent? If you send it back to the originator, you
    disclose membership of the list. You can, however, configure the list
    to have an address to which DSNs and NDNs are directed so that the
    list maintainer (or whomever) can be alerted to these issues. This
    is done with the mgrpErrorsTo LDAP attribute associated with the list
    description. (I myself do not know how to set that via iDA.)
    FWIW, there's a public mailing list for iMS issues. That mailing list is
    read and responded to by many of the iMS engineers. It's
    [email protected] Anyone can post to it; it's an unmoderated
    list. You can subscribe by sending a message to [email protected] In the message place the single line
    SUBSCRIBE

  • Adding a page to Reading List causes full screen "bug"

    When I attempt to add a page to the Reading List in Safari 5.1.1 running in full screen, it appears to "bug out."  The window slides to the Finder and causes the dock and menu bar to slide on top of the still full screen Safari window.  When I pull up Mission Control, the Safari desktop is sitting empty with the Safari window on the desktop.
    Thanks in advance for any assistance you can provide.

    This is still an issue in Safari 5.1.2.  Is anyone else experiencing this?

  • *** Priority list for TOP-2 Bugs - and TOP-3 feature requests ***

    I'm more a business type of user - and I want to share my main problems/bug with this community in the hope that the WebOS developers read this...These bugs are so obvious and I am really wondering why these haven't been fixed immediately... BUGS: 1. Email: Delete of IMAP emails doesn't work: Each time I wipe out an email in an IMAP folder, it immediately comes back with the next email sync (which is pre-set "when new email arrives" - which happens in the day time every couple of minutes. PLEASE handle this like all the general behaviour: when wiping out then ask delete or cancel. And after deleting, move to the deleted folder. I am using the German no. 1 IMAP email service GMX (it's free), but I'm sure this happens with other email services as well. 2. PDF reader: delete of PDF files doesn't work: It was working in Version 1.3.1 - but since then it's not working anymore. I use the PDF reader, so I want to delete files from the file list by wiping out! FEATURE REQUESTS: 1. Sync of Memo with Exchange: we are waiting! Calendar, addresses and tasks are working - only missing part is memos! Do it! 2. handling address categories: I work for years with categories (no other way with over 1000 addresses) - so I need to handle categories. Just put this (Exchange-synced) field into the address and introduce a view filter in the menu. Then I can easily find addresses, like 'NYC restaurants' 3. Full text search in addresses and calendar entries: I have to search in the memo/notice field of calendar entries and addresses. This search may take longer of course, but no problem. Hi WebOS developers: feed-back welcome!!!!

    Hello and welcome to the forums;
    I created a GMX account myself, to see if the issue could be with your provider specifically. Used automatic setup for the email address, and the Pre automatically recognized as IMAP. I then sent several test messages to the new gmx account from my gmail account, and after each one arrived I deleted it by swiping off from the inbox. When the new email arrived, the old previously deleted email was not in the inbox, but still in the deleted items folder where it should be.
    However on the web portal for the GMX account, I saw the "original" unread email in the trash, along with a "copy" in the inbox. This seems to be a design setting for the provider, but it did not mean I kept getting deleted emails back in my inbox. Have you checked the account settings on your Pre to make sure the account is set as IMAP and not POP? If the email was set as POP by accident, that could explain why your email folders are not synchronizing.
    For the PDF viewer, you are correct that you cannot delete PDF files from the view list, and unfortunately I don't have access to a 1.3.1 device to see if it was possible then. At this time, managing PDF files is best done by connecting your Pre via USB to a computer and manually deleting files there.
    To suggest the ability to delete PDFs on device and other changes, we have a feedback portal at www.palm.com/feedback which is a direct link to our developers.
    Life moves fast. Don't miss a thing.
    TreoAide

  • List of iOS 6 bugs for iPhone 4s

    Ever since I updated my iPhone 4s to iOS 6, there have been some unfixed bugs and some new ones.
    Where do we direct these bugs to? Is it to this forum? I just want to reach out to Apple so that these bugs can be looked at and be fixed. Lets all share our bugs in an orderly fashion so someone from the Apple's engineering department can have a look and study them.
    1. Lock screen bug
    Sometimes, when you try to swipe to unlock the slider goes right up to the middle and goes back to the start making you stuck there.
    Same issue when you receive notifications in your lockscreen, you cant swipe all the way.
    Temporary solution:
    Press power/lock button once to turn of screen, and press it again to turn it back on. The slide to unlock slider can go all the way through.
    2. Screen not turning off/dim
    At some rare occasions the when at homescreen, the backlight doesnt dim nor does the phone locks itself. It remains active and drains your battery. This issue does not seem to persist in applications for me.
    Temporary solution:
    Lock manually, dont wait for it to autolock to prevent battery drain.
    3. Battery drain?
    I dont seem to experience any battery draining issues in my iPhone 4s. My usage is pretty random. Sometimes, I can be really active. Whereas sometimes, I can use very little. But nevertheless, the iPhone is able to last throughout the day (at least from morning till night) so I can make it in time to charge it for tomorrow's use.
    However, I am the only one who is okay with it. And I noticed for me that my battery is able to last longer somehow. I have other friends using iPhone 4s also which experienced serious battery drains after updating.
    Status of phone (Mine):
    3G on
    Bluetooth off
    Never closed apps, only turned off navi apps such as Waze
    10.3GB storage free
    Vibration off, vibration on only on silent
    Phone signal in 3G always in 4 - 5 bar
    Result: Battery lasts at least a day
    Status of phone (friend):
    3G off, Edge on
    Bluetooth off
    Never closed apps, no navi apps were used
    9.2GB storage free
    Vibration off
    Phone signal always in 5 bar
    Result: Battery lasts half a day (Ever since iOS6 update)
    What have I tried so far?
    1. Restore from iTunes
    2. Turning off autolock, and switching it back on
    What have I not tried?
    1. Clean restore : I am trying to avoid this because, my backup contains important info such as over 300 phone numbers. If only Apple allowed "selective restore". I just cant loose those phone numbers.
    As you can see, comparing two iPhones with almost similar parameters showed inconsistent results. Even when the phone has sufficient signal the battery drain is inconsistent.
    Thats all for now. If anyone else wants to share their bugs, feel free to do so in this thread.

    Thank you for responding,
    The router I am using is a Linksys, we also tried disconnecting that one and connecting the netgear router we have. The security method is WEP I believe, although I could be wrong.
    No one else is having issues with their WiFi, just me.  All the laptops are connecting wirelessly, the 2 tablets we have are connecting perfectly fine and all cell phones are connecting.

  • K8N Neo2 platinum (nF3) + San Diego?

    Will it work, does anyone know? I have a Venice now and a San Diego arriving on Friday, just wanted to know if it works or not so I may have to cancel the order if necessary. I wish MSI kept ahead like DFI on the BIOS front!

    Hmm… seems like they have removed both venice and san diego from testing phase and OK status in the K8N Neo2 support list, which were there some days ago.
    http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_cpu_support_detail.php?UID=607&kind=1
    Something is going on – maybe 1.6 wasnt fully compatbile with venice/san diego - hopefully a new 1.7 bios ?
    I can´t see why venice / san diego would not work with a proper biosupdate – but as you said – they are late with bios updates.

  • Does a P45 Neo2-FR, P45 Neo2 use the same bios?

    I'm going to be building a PC for a buddy of mine and the P45 Neo2-FR would fill the bill nicely. I went to MSI to make sure a Q9550 was compatible and to see which bios version is needed for support of said processor. I can find no listing for the P45 Neo2-FR. The P45 Neo2 is listed is it the same? If so this is not much help as the list of supported CPU's only lists the latest bios 3.1 that just came out. So what CPU's are supported by 3.0?
    I also see people are having problems with some video cards in the first PCIE slot and there is a beta bios to fix this problem. Is this a problem only when using ATI 4xxx video cards? I was planing on using a 4870. I sure do not want to deliver the PC with a beta bios or with the graphics's card in the second slot. Is this a problem only on the P45 Neo2-FR or all MSI P45 boards that support Crossfire? If not which ones do not have this problem?
    This build does not require Crossfire but I picked this board because it has better chipset cooling than P45 Neo3's have. The Neo2's also have 6 USB ports naively while the Neo3 has only 4. I also thought about using a P45 Diamond as it has built in SB XFi but it is water cooled. Seems all high end MSI boards have gone to water. Nice for extreme overclockers but the rest of us have no need for such things.
    Any input greatly appreciated.

    Quote from: Jack the Newbie on 25-September-08, 03:56:10
    He is talking about P45 Neo2 Series boards.  All revisions use the same BIOS Versions [A7512IMS.3xx]
    I think if you read, the person mentions the Neo3 as well.
    I have just check MSI Global and there is only 1 p45 Neo2 listed??????
    The only ones with F & FR are Neo3 series.........

  • SPEEDFAN and P965 Platinum

    Hello
    HAs anyone managed to control their fans using speedfan and an MSI P965 platinum .. with the latest speedfan beta I have managed to obtain the right temperature readings (on core duo) but no fans show up in speedfan to control etc...
    Would appreciate your info if you have it working
    Regards

    Quote from: olabe on 12-December-06, 08:02:16
    Thanks for your reply - thing is im quite ok with fan speed - i have been running for over 4 years on various motherboards with no problem but with this one I simply have no access to the fans at all -- under the speeds and fans Tabs in Speedfan there is nothing listed - so I can't change anything
    Maybe there is a bios setting or something that I am missing ?
    Would really appreciate some insight
    Hmmm... only thing that even resebles it is that i have auto oc disabled, and temp target at 50C. Fan failure warning disabled.
    I think I had ability to control fanspeed with original bios 1.5, but i had to upgrade it to 1.6B9 and now later to 1.6B13 as im having huge problems with my scsi controllers. Some are unbootable, some have strange performance issues, some work.
    I would not recommend using betabios, I think I read somewhere that it voids warranty or something.
    Oh and, im not using platinum, but neo version of the mobo.
    Try checking if you rly have latest version, ill check mine when i get home.

  • I tried to create a new google calendar in ical, but they did not show up, I tried this several times. Now when I sync my iPad via iTunes all these failed attempts are showing up under the ical sync list in iTunes, how can i clear them from this list?

    I tried to create a new google calendar in ical, but they did not show up, I tried this several times.
    Now when I sync my iPad via iTunes all these failed attempts are showing up under the ical sync list in iTunes, how can I clear them from this list?

    See https://bugs.downthemall.net/ticket/2147
    Google Search Bug
    Reported by: openid:nathan wride Owned by:
    Priority: major Milestone:
    Component: Polish/Usability Version: 2.0.10
    Keywords: Google search instant save bug Cc:
    Operating System: Windows
    Description
    Hi Guys
    I have found a bug/annoying thing that occurs frequently on google. When searching, DTA trys to download the search...
    I'll try to attach a screenshot.
    Attachments
    [https://bugs.downthemall.net/attachment/ticket/2147/Screenshot.png Screenshot.png] Download (113.0 KB) - added by openid:nathan wride 4 weeks ago.
    The screenshot that shows the bug.

Maybe you are looking for

  • Making a still from FCP video

    I need to make a still (JPEG, tiff, ...) from a frame of my video on FCP so I can put it in a Word doc afterwards. How do I proceed? Thanks

  • Close a browser  window from a servlet

    I am newbie and am trying to close the browser window from my servlet without prompting as my servlet is designed to run as a batch app. The servlet is invoked by a scheduling agent and performs the batch function , but leaves the browser window open

  • How to access script from within Bridge

    I have considerable experience scripting InDesign, but this is my first Bridge script... The following script does what I want from within the ESTK, but I have no idea what to do to make it runnable from within Bridge... :( Any pointers? var brSel =

  • Synch and connect

    Ok just saw this feature on the verizon wireless web site, and i dont understand the idea of this. It doesnt bring anything new per se as you can already send text and pic messages from home pc and almost every phone has backup assistant on it now. S

  • AutoCorrect automatically changes words despite being turned off!

    We run MS Office 2013 and Outlook in our office on a MacBook Pro (Retina). I am having a consistent problem whereby when I type in any MS Office application it automatically changes I to We. I have done the following (and spoken to an IT consultant):