Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Perhaps you could link to the best practices you've found. What kind of leads besides them are you expecting? I suppose <a href="http://rdaarchitecture.blogspot.com/2008/09/windows-mobile-and-power-management.html" rel="nofollow noreferrer">this</a> was part of what you found, whereas <a href="http://software.intel.com/en-us/articles/maximizing-power-savings-on-mobile-platforms/" rel="nofollow noreferrer">this</a> is more targeted towards laptop multicore processors. </p> <p>Windows Mobile is a soft real time system at best, and very far from hard real time. I doubt you'll find much use in that kind of description and advice. </p> <p>Otherwise, I'd say you have fairly standard stuff. Keep off the Wifi if you can, as well as other devices. Use cacheing if you have the memory available (but measure what's happening so the cache doesn't become a liability). Never, ever do an idle loop, but use Thread.Sleep() or better, try to make everything event-driven, with short processing bursts. Threads can be your friends, used wisely. </p> <p>And, of course, profile like crazy. The more efficient your code is in terms of CPU usage, the better. </p> <p>But more specific advice would have to depend on the problem you're trying to solve. Why is your application Wifi-intensive? What information does it need to receive or send? Who are the users, and where do they move? Are there any heavy calculations involved? How much user interface do you need to present? Have you targeted specific hardware yet (specific CPU and WLAN interfaces will have different power consumption behaviours). </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload