Over clocking with Compact framework

  • Thread starter Thread starter Ofer B.
  • Start date Start date
O

Ofer B.

Hi all,

I know that there are some application that enable to do over clocking to
devices.
Is it possible and how, to do over clocking with comoact framwork, C#

thanks,
Ofer
 
Not directly, no.
You need to fully understand how "overclocking" works. Basically you
increase the core voltage of the processor or the bus speed to achieve the
ability to process more instructions per second. Doing so increases power
consumption (bad on a mobile device) and can limit the life of the device
(to less than a second if not done right). It's not near as easy to do in
an embedded device as it is on a PC, however you can make some headway by
getting the processor manual for the device you're working with and looking
at how the chip OEM implements both voltage and bus speed changes.

IMHO, the risk of device damage is way above the cost of a device for the
minimal gains you'll be able to squeak out of these processors. Trust me,
the OEMs are already running them as fast as they reliably can.

-Chris
 
Thanks for your answer, Chris,
I do not need to do overclocking, What I really need is to get the CPU usage
when my application is running. Those application " the overclocking
application"
usually have a CPU usage bar.

I need to make a "CPU usage bar" in C#, copact framework.
Is it possible?

Thanks Ofer
 
Not all CPUs, notable the Intel ARM CPUs, do not support CPU usage info.

-Chris
 
Back
Top