How to change the USB polling rate on 1.6.8? OS X Snow Leopard

Hey Guys
i´ve got a problem with my USB-Gaming Mouse (Roccat Kova plus).
The mouse has got a 1000mhz polling rate with 1ms, response time and works up to 3200dpi.
The big problem with my MacBook pro is, that the USB side ports just response with a polling rate of 125mhz (8ms response time)
i know that 125mhz is more than enough for a mouse, but thats not the problem ive got. Everytime when i use the mouse with my MacBook the cursor is jumping arround, just a little bit. Its not a big thing, but its extremely annoying in games like Counter Strike where you need as much precision as possible.
There are many people out there who seem to have the same problem, so i look for a tool that can change the polling rate of the side USB to 1000mhz or can even change the mouse polling rate to 125mhz.
I know that there are some developer tools who can do this, but i hope the community can help me with that.
yours Christian

sometimes you dont see the easyest way to fix it
i always looked for a driver for mac, but there was nothing.
After your reply i installed the original driver software on my old Windows System and i found out that i can change the polling rate under "advanced options".. well, i feel like an idiot now, but its all fixed. I could even change the graphic details from low to very high! Just because there are no more mouse lags! ;D
thx for your fast reply
Christian

Similar Messages

  • How to change the UWL refresh rate for all portal users.

    Hi Portal Experts,
    How to change the UWL refresh rate for all portal users?
    Users can individually change the refresh rate through "Personalise View" in UWL.But we want this to set it for all users(we have 10k portal users).
    It was defaultically set to 5 mins for all users.How to change this to 20 mins.
    Thanks
    Sony.

    1.      Launch the UWL iView configuration page.
    You can access the iView from the UWL administration pages (System Administration ® System Configuration). Navigate to the property editor as follows:
          From the Universal Worklist Systems, choose the system for which you want to edit the properties.
        Choose Edit.
    may be you can get clear help from below help file
    http://help.sap.com/saphelp_nw04s/helpdata/en/eb/101fa0a53244deb955f6f91929e400/frameset.htm
    regards
    nagaraju

  • How to change the transmissi​on rate of data flow in producer/ consumer pattern

    Hi All
    I am new to labview and trying to design a application to transfer image data in different rates, that means I can change the transfer rate in the transmission process. In fact,I refer to the the Queue Basic.vi to achieve this function by Changing the delay value of dequeue and enqueue.The program is divided into three parts:
    The first part is the sender in vc used to split and send image data.Data size is 226kb and each time we send a 1kb packet;
    The second is labview rate-change part,use producer/ consumer pattern and queue to transfer data;
    The third one is the receiver in vc,receive data in sequence and synthetic images.
    The entire transfer process is: image data was sent from the sender to producer loop through DLL, then enqueue--dequeue in consumer loop--DLL--receiver.The sleep time in vc sender is equal to the delay value in producer loop and this makes it look like the data generated as in the loop.
    Now this is where my dilemma is:
    When transferring data, if the producer loop and consumer loop delay value are equal(both 20ms), I can see image synthesis at a constant speed and no data lose; if I change the consumer loop delay value and make it greater than the producer delay(one is still 20ms and another is 50ms),that means receive in a lower rate and store data in queue. I can see Elements in Queue
    increase but the image data randomly lost, and the image synthesis speed is not reduced.
    My question is why image data loss and I can't see the image synthesis speed reduced when change the delay value in consumer loop?
    Do anyone know how to solve the problem? Are there any examples I can refer to? Any suggestions are greatly appreciated!
    Attachments:
    image1.JPG ‏56 KB

    thisoldman,
    I don't have '/usr/lib/modules/3.17.3-1-ARCH/build/Documentation/VGA-softcursor.txt' on my file system. Does it contain the info about changing the blinking speed?
    P.S. The other two links I found yet before starting this thread. I only found in them the recommendations about changing "the color and shape of the cursor and turning blinking on/off" (as I mentioned in the original question). Did I miss the info about the blinking speed?
    PPS: I found the vga-softcursor.txt here: https://www.kernel.org/doc/Documentatio … cursor.txt
    But that file doesn't tell about changing the blink rate either.
    Last edited by nbd (2014-11-23 20:55:41)

  • How to change the maximum frame rate of the camera by changing the image size?

    I have two  acA2040-180km cameras which are connected to 2 NI PCIe-1433 framegrabbers, I am monitoring my cameras by LabView, maximum allowable frame rate is about 187 for full resolution images, but I just need a small fraction of the images, I know if I make the images smaller, FPS will get higher, but it isn't possible by changing the image size in NI MAX, I've also tried to change the size by defining the region of interest in the grab setup.vi, but it would be after going to camera so it isn't the case as well, so I need a VI to go to the camera before starting to take photo and define the region of interest which is going to be captured, would you please help me to find it?
    Please help me, this problem get me stuck!!!

    Have you tried changing the image size using property nodes as Bruce suggested? Do remember with Basler cameras, reducing the width only will not affect the transfer speed but the reducing the height will. Have a look at the frame calculator to understand what you frame rates you can acheive with certain settings:
    Basler Frame Rate Calculator
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • I just downloaded and installed mountain lion on my macbook pro but it didn't change the picture on desktop to mountain lion in is still snow leopard is that supposed to be that way.

    I just downloaded and installed mountain lion but it kept snow leopard on my screen is that supposed to happen or did i miss something?

    Then you're good to go.  Updating your OS doesnt change your desktop background, you can do that manually, if you wish.

  • How to change the default workspace polling behaviour

    Here are the instructions on how to change the polling interval in workspace:
    The workspace source project is usually under (C:\Adobe\Adobe LiveCycle ES2\LiveCycle_ES_SDK\misc\Process_Management\Workspace)
    The file that needs to be modified is SessionManager.as and is under  (C:\Adobe\Adobe LiveCycle ES2\LiveCycle_ES_SDK\misc\Process_Management\Workspace\ws\Workspace\foundation\src\lc\fou ndation)
    Set the value in a javascript file and then read this from the Workspace app.  You can see an example of this in the same createChannelSet() method wrt the “enableSmallMessages” variable. To do this:
    1- Add the following lines to the workspace-config.js file right after the enableSmallMessages var definition (the js file is in the sdk under (C:\Adobe\Adobe LiveCycle ES2\LiveCycle_ES_SDK\misc\Process_Management\Workspace\ws\Workspace\ui\html-template\js) – note that my example sets it to 10 seconds:
    1- Then in the createChannelSet() method, define a new var with the same name and type=Number and default it to 3000 (to be consistent with the current behaviour):
                   var pollingInterval:Number = 3000;
    2- Then, in the existing block where ExternalInterface.available is true, add the line to read the new value from the js file like this:
                  pollingInterval = ExternalInterface.call(“pollingInterval”);
    3- Set pollingInterval on the channel with:
                 channel.pollingInterval = pollingInterval;
    4- Add this function to the workspace-config.js file
          // pollingInterval is the channelset polling interval in millisecs   
          function pollingInterval()
                return 10000;
    Compile this code and rebuild the workspace war, making sure the war contents contain the updated js file too, and then the polling interval will be read from the js file, making it much easier to change.
    Here is the doc on how to customize workspace: http://help.adobe.com/en_US/livecycle/9.0/customizeworkspaceui.pdf

    Changing the Workspace Polling intervals just got a whole lot easier.  Go to http://blogs.adobe.com/ADEP/2011/08/workspace-polling-in-adep.html for more info.

  • How to change the update rate of an Analog output in a loop

    I have to generate a ramp at a decreasing frequency. I use a shift register in a "for" loop to decrease the rate of the analog output. Unfortunately, the loop or the analog output initialisation take a too long time delay..
    How can I solve this problem?
    Any help is greatly appreciated
    Thank you

    Hello;
    I'm attaching an example VI that shows how to change the output rate on the fly.
    Hope this helps.
    Filipe
    Applications Engineer
    National Instruments
    Attachments:
    aochangeonthefly.zip ‏47 KB

  • How do I change the cursor blink rate? Firefox 3.6.10 under Ubuntu.

    How do I change the cursor blink rate? Firefox 3.6.10 under Ubuntu.

    See this old mozillaZine forum thread about this:
    *http://forums.mozillazine.org/viewtopic.php?f=38&t=865895
    ''(please to not post in such old threads)''
    See also:
    * http://kb.mozillazine.org/about:config
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />

  • How do I change the export frame rate?

    How do I change the export frame rate?

    my video came out super twitchy when i exported it and was told i need to change to export frame rate.
    here is an 8 sec  clip of what i am talking about. 
    http://www.youtube.com/watch?v=cuQ5VduBUK
    where is quick time conversion
    sorry im kind of a noob
    still trying to figure everything out

  • USB polling rate 1000hz does not work (only 500hz)

    I have 3 mouses, a Zowie FK2 mouse, a Steelseries Sensei Raw and a Razer DeathAdder 3.5G mouse. All of them fully support 1000hz USB polling rate (it's one of their main selling points) and I have already tried them successfully (1000hz) on Windows 7.
    Following the Arch Wiki guide, I successfully enabled 1000hz mode with usbhid module.
    $ cat /sys/module/usbhid/parameters/mousepoll
    1
    $ systool -avm usbhid
    Module = "usbhid"
    Attributes:
    coresize = "48595"
    initsize = "0"
    initstate = "live"
    refcnt = "0"
    taint = ""
    uevent = <store method only>
    Parameters:
    ignoreled = "0"
    mousepoll = "1"
    quirks = "(null),(null),(null),(null)"
    Sections:
    .bss = "0xffffffffa005e960"
    .data = "0xffffffffa005e000"
    .exit.text = "0xffffffffa005b169"
    .gnu.linkonce.this_module= "0xffffffffa005e700"
    .init.text = "0xffffffffa0044000"
    .note.gnu.build-id = "0xffffffffa005c000"
    .rodata = "0xffffffffa005c080"
    .rodata.str1.1 = "0xffffffffa005c8c4"
    .rodata.str1.8 = "0xffffffffa005cd18"
    .smp_locks = "0xffffffffa005c7d8"
    .strtab = "0xffffffffa0046f80"
    .symtab = "0xffffffffa0045000"
    .text = "0xffffffffa0054000"
    __kcrctab_gpl = "0xffffffffa005c050"
    __ksymtab_gpl = "0xffffffffa005c030"
    __ksymtab_strings = "0xffffffffa005da40"
    __mcount_loc = "0xffffffffa005d7b0"
    __param = "0xffffffffa005d750"
    __verbose = "0xffffffffa005e200"
    So according to the above outputs usbhid is already running with 1000hz (1ms polling rate).
    But when using evhz which measures the HZ both with the DeathAdder and the Zowie FK2 I get this:
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    event0: latest hz = 500 (average hz = 500)
    When I use the Steelseries Sensei Raw setting 1000hz using the sensei-raw-ctl, evhz reports 1000hz successfully.
    So what is going on? Why the two other mouses are stuck on 500hz and can't get to 1000hz?
    I now only use Zowie FK2 which is much better than the other two mouses and I need 1000hz because 500hz has microstuttering which impedes my gaming use.
    Is this a bug? How can I fix this?
    Last edited by Nektarios (2015-02-17 04:01:26)

    In the end I found out that this maybe is just a reporting bug with evhz utility, the mouse runs in 1000hz correctly. I tried dimr.exe with WINE and it reports 1000hz correctly.
    Though I find it funny that when I tried mousepoll=2 (500hz) and mousepoll=4 (125hz), dmr.exe still reported ~1000hz. Now I'm not really sure if it is a reporting problem with evhz, or with dimr.exe.

  • How to change the default time?

    when you finish the action of dialing ,the CCM system recognize your finish after 10s .How to change the default time in Service Parameters ,which is the detail Parameters ?

    Please see the following link for information on configuring the interdigit timeout.
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_tech_note09186a00800dab26.shtml
    Hope this helps. If so, please rate the post.
    Brandon

  • How to change the output directory of .xml files

    Hi,
    There are lots of .xml files generated under
    $ORACLE_AS_HOME/j2ee/home/applications/xmlpserver/xmlpserver/xml.
    (ex:/usb/bipub3/oracle/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xml).
    I found these files are generated in the following operation;
    1.Log in BI Publisher.
    2.Select the Schedules tab.
    I think they are kind of temp files so we will be able to delete them.
    But I'd like to know how to change the output directory.
    Can we change the above directory to other path?
    Regards.

    Why? As that may invalidate support since you configure/alter the deployment.
    The location is specified in oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver.war, so you could go into the war file and alter it.

  • How to change Flex Application frame rate at runtime

    hello,
    i have Flex application that need to change the Frame Rate at
    runtime.
    when i am changing it by using the slider component, here the
    code:
    private function onChangeSlider(e:Event):void
    frameRate = sliderFR.value;
    trace(frameRate);
    <mx:HSlider id="sliderFR" x="452" y="765" width="378.2"
    minimum="1" maximum="50" liveDragging="true" snapInterval="1"
    value="25" change="onChangeSlider(event)"/>
    the value is changed, but the frame rate is not changed.
    when i insert the binding to the <Application> tag i
    got error on this one, because i can't bind there items for the
    application level.
    how can i change the Flex frame rate at runtime?

    i found the solution!
    in Flex application you have frameRate properties that
    doesn't work at runtime in the ActionScript code.
    if you have a video that you want to change the speed of it,
    you need to change the stage.frameRate (of all the Player itself).
    and there is a catch here. if you will try to change it right after
    the application will start (like in: creationComplete event) you
    will have a runtime error.
    what you need to do is, change the stage.frameRate value
    after the all application is started from a button or other event
    in the system.
    this is working grate for fast/slow FLV playing
    enjoy!

  • T-Code for changing the default Exchange Rate reference for creating PO?

    Dear All,
           Can somebody kindly give me the T-Code for changing the default
    Exchange Rate reference for creating PO? Is there a Step by Step
    procedure before changing the default exchange rate?
    Thank you in advance.
    Regards,
    Gopesh

    Hi
    There is not such Tcode to change the default exchange rate from the PO.
    If you want you can confugure the exchange rate in the following path in the IMG,
    SPRO>MM>LIV>Incoming Invoice>Configure How Exchange Rate Differences Are Treated
    Hope it helps you.
    Cheers
    Umakanth

  • How to change the mac address of thunderbolt to ethernet adapter?

    Hello everyone,
    I am using Macbook pro retina display 2013 version. I have bought a thunderbolt to ethernet adapter in order to connect my Macbook to LAN. But in my area there is a shared line and I have to clone their mac address to my Macbolok. I could not change the mac address of my thunderbot to ethernet adapter. Can anyone please tell me how to change the mac address of thunderbot to ethernet adapter step by step??
    Thanks in advance.

    Open terminal and type the followings;
    1) sudo ifconfig bridge0  ether xx:xx:xx:xx:xx:xx(it will be your new mac address)
    2) Type your password to confirm
    3) ifconfig bridge0 |grep ether (to see if change is successful)
    PS: *This should with your thunderbolt adapter, but its not working usb to ethernet adapters without installing required drivers.
           ** You may need to do these steps every time you boot your mac.

Maybe you are looking for

  • Filtering of messages in PI

    Hi, This is a master data push scenario where i am sending data from SAP to Ariba through PI. i have a case where in a particular namespace i need to make sure the message is not passed through based on the value in a particular field in SAP. How do

  • How to  Get CL_HTMLB_MANAGER Document----English edition

    Hi: System message: "Document CL_HTMLB_MANAGER is not available in language EN" How to get the english Document of BSP class and interface? where can i download it?

  • DIfference Between User Exits, Screen Exits, Menu Exits And BADI

    Could any one let me know the exact/practical dIfference Between User Exits, Screen Exits, Menu Exits And BADI. ? And why BADIs are more proned to use?

  • Running Creative Cloud apps after System Restore

    I got Creative Cloud yesterday and I'm totally psyched.  I downloaded several of the apps in the Application Manager.  Once they were done, I hit the "run app" button next to Photoshop to make sure it was working.  It worked perfectly, so I went to b

  • Error : No Cenvat amount to be posted ... urgent

    Dear Experts, I have captured the excise invoice during GR and part 1 entries have been updated. However, while posting excise invoice when I simulate cenvat in j1iex for import purchase orders I get an error 'No cenvat amount to be posted and no cen