mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-05 11:27:09 +00:00
fan: increase irq polling to get more accurate rpm
This commit is contained in:
parent
dbe431095a
commit
e8f73a42b8
@ -79,15 +79,14 @@ void get_fan_speed(u32 *duty, u32 *rpm)
|
|||||||
{
|
{
|
||||||
if (rpm)
|
if (rpm)
|
||||||
{
|
{
|
||||||
u32 irq_count = 1;
|
u32 irq_count = 0;
|
||||||
bool should_read = true;
|
bool should_read = true;
|
||||||
bool irq_val = 0;
|
|
||||||
|
|
||||||
// Poll irqs for 2 seconds.
|
// Poll irqs for 2 seconds. (5 seconds for accurate count).
|
||||||
int timer = get_tmr_us() + 1000000;
|
int timer = get_tmr_us() + 2000000;
|
||||||
while (timer - get_tmr_us())
|
while ((timer - get_tmr_us()) > 0)
|
||||||
{
|
{
|
||||||
irq_val = gpio_read(GPIO_PORT_S, GPIO_PIN_7);
|
bool irq_val = gpio_read(GPIO_PORT_S, GPIO_PIN_7);
|
||||||
if (irq_val && should_read)
|
if (irq_val && should_read)
|
||||||
{
|
{
|
||||||
irq_count++;
|
irq_count++;
|
||||||
@ -97,8 +96,11 @@ void get_fan_speed(u32 *duty, u32 *rpm)
|
|||||||
should_read = true;
|
should_read = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Halve the irq count.
|
||||||
|
irq_count /= 2;
|
||||||
|
|
||||||
// Calculate rpm based on triggered interrupts.
|
// Calculate rpm based on triggered interrupts.
|
||||||
*rpm = 60000000 / ((1000000 * 2) / irq_count);
|
*rpm = irq_count * (60 / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (duty)
|
if (duty)
|
||||||
|
Loading…
Reference in New Issue
Block a user