StartKit power consumption vs system frequency test

All technical discussions and projects around startKIT
Post Reply
NabeelLass
New User
Posts: 3
Joined: Mon Mar 14, 2016 6:27 pm

StartKit power consumption vs system frequency test

Post by NabeelLass »

Hello,

I am going to test, how the power consumption will be change by changing the system frequency.
Attached is what I changed. There were no changes in power consumption!! either by changing the oscillator nor system freq, there was no change in power consumption!!

Can anyone guide me please?

I want to make a chart to show the power consumption with different frequencies.
Attachments
SystemFreq.jpg
(354.41 KiB) Not downloaded yet
SystemFreq.jpg
(354.41 KiB) Not downloaded yet


User avatar
infiniteimprobability
XCore Legend
Posts: 1126
Joined: Thu May 27, 2010 10:08 am
Contact:

Post by infiniteimprobability »

Hi,
STARTkit probably isn't the best platform for power experiments. It's a dual tile device where one tile is dedicated to the task of being a debug adapter - so you get one user tile.
However, the debug adapter code running on the other tile isn't particularly optimised for power (no need to..) so it will drown out any readings you get from the user tile.

You can save quite a lot of power by scaling frequency, or more often than not, making goo use of events rather than polling in your code. If you use timers, channels/interfaces with lots of selects{} then this will happen anyway..

Any platform where the debugger is external will be a better target for doing power experiments.
Post Reply