You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
7 years ago
|
|
||
|
|
||
|
#include "AudioSettings_F32.h"
|
||
|
#include "AudioStream_F32.h"
|
||
|
|
||
|
float AudioSettings_F32::cpu_load_percent(const int n) {
|
||
|
//n is the number of cycles
|
||
|
#define CYCLE_COUNTER_APPROX_PERCENT(n) (((n) + (F_CPU / 32 / AUDIO_SAMPLE_RATE * AUDIO_BLOCK_SAMPLES / 100)) / (F_CPU / 16 / AUDIO_SAMPLE_RATE * AUDIO_BLOCK_SAMPLES / 100))
|
||
|
float foo1 = ((float)(F_CPU / 32))/sample_rate_Hz;
|
||
|
foo1 *= ((float)audio_block_samples);
|
||
|
foo1 /= 100.f;
|
||
|
foo1 += (float)n;
|
||
|
float foo2 = (float)(F_CPU / 16)/sample_rate_Hz;
|
||
|
foo2 *= ((float)audio_block_samples);
|
||
|
foo2 /= 100.f;
|
||
|
return foo1 / foo2;
|
||
|
|
||
|
//return (((n) + (F_CPU / 32 / sample_rate_Hz * audio_block_samples / 100)) / (F_CPU / 16 / sample_rate_Hz * audio_block_samples / 100));
|
||
|
}
|
||
|
|
||
|
float AudioSettings_F32::processorUsage(void) {
|
||
|
return cpu_load_percent(AudioStream::cpu_cycles_total);
|
||
|
};
|
||
|
float AudioSettings_F32::processorUsageMax(void) {
|
||
|
return cpu_load_percent(AudioStream::cpu_cycles_total_max);
|
||
|
}
|
||
|
void AudioSettings_F32::processorUsageMaxReset(void) {
|
||
|
AudioStream::cpu_cycles_total_max = AudioStream::cpu_cycles_total;
|
||
|
}
|