Click here to Skip to main content
Licence CPOL
First Posted 31 Mar 2005
Views 55,941
Downloads 105
Bookmarked 20 times

Suspend Killer for WinCE.NET 4.2

By | 31 Mar 2005 | Article
WinCE system suspend

Introduction

Have you tried to keep the device which is running on WinCE.NET without going to suspend while watching video. Here's how to do it without changing the power settings manually.

Background

I was developing a video play back module for WinCE.NET 4.2 and encountered a problem that the system goes to suspend mode according to the settings in the registry while watching a video. First, the backlight goes off and afterwards the system goes to suspend mode. The way normally we do is change the settings in power manager which is not practical every time.

Using the code

I tried to stop it calling SystemIdleTimerReset() but it was unable to stop the device going to suspend sometimes. Because, we have to check the timeout when the power manager event gets fired and call the SystemIdleTimerReset() before it. Calling SystemIdleTimerReset() in a thread or timer works. But we need to consider about the performance since it is a mobile device.

So I tried to do it by firing a key board event to the application message loop. Key board events were generated in a timer process and did it as follows:

//Define the constants to generate key board event
#define VK_NONAME       0xFC
#define KEYEVENTF_KEYUP 0x2

//in the timer process added the following line
keybd_event(VK_NONAME, 0, KEYEVENTF_KEYUP, 0);

It worked fine. Device did not go to suspend mode. But application gets an extra message, and since it is a mobile device, I thought it is better to get rid of this extra process and find a nice solution which does not affect the application performance. Finally, I was able to develop a nice and robust class which does the task I want as it is. So I called it SuspendKiller. SuspendKiller uses the registry, power manager notification call and Backlight power request call to accomplish the task.

Suspend Killer functions in the following sequence:

  1. Loads the settings from the registry and saves those in an array for future reference.
  2. Sets the new settings to Never (0) in the relevant registry keys.
  3. Notifies the Power Manager event to re-load the settings from the registry.
  4. Turn On the backlight with full power.
  5. When the function is called with FALSE parameter, it reveres everything. (Sets the original values, releases the backlight power.)

It does not affect the application performance since we do it once when the media is about to play and stop.

To do this task, I tried many approaches and also tried with interrupts. But I think this solution is nice and clean. Also tested with iMX21 ADS with WinCE.NET 4.2 and worked perfectly while watching a video for more than one hour.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

D. Ajith Nilantha de Silva



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralUrgent PinmemberSunshine Always3:08 14 Dec '09  
GeneralSuperb Pinmemberramesh bs3:40 2 Sep '09  
QuestionHead file "Pm.h", cannot find it PinmemberAnthony S.23:13 13 Jul '06  
AnswerRe: Head file "Pm.h", cannot find it Pinmemberajith23:54 26 Oct '06  
QuestionGuarantee registry restore?? PinmemberLewisw0:30 16 Jun '06  
AnswerRe: Guarantee registry restore?? Pinmemberajith23:42 26 Oct '06  
QuestionGot .Net PinmemberJumba66664:51 24 Mar '06  
AnswerRe: Got .Net Pinmemberajith21:23 18 May '06  
GeneralNot Working in Windows Mobile 5 Pinmembermiggedy8:21 16 Jan '06  
GeneralRe: Not Working in Windows Mobile 5 Pinmembermiggedy8:50 16 Jan '06  
GeneralRe: Not Working in Windows Mobile 5 Pinmemberajith22:35 13 Feb '06  
QuestionRe: Not Working in Windows Mobile 5 Pinmemberroznicki10:07 27 Apr '09  
Generalneed some guidance for power managment in pocket pc Pinsussalokb6:22 29 Aug '05  
GeneralRe: need some guidance for power managment in pocket pc Pinmemberajith22:32 13 Feb '06  
GeneralRe: need some guidance for power managment in pocket pc Pinmemberajith23:01 13 Feb '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120528.1 | Last Updated 1 Apr 2005
Article Copyright 2005 by D. Ajith Nilantha de Silva
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid