Skip to content
Snippets Groups Projects
Commit 86b4e585 authored by Christos Gentsos's avatar Christos Gentsos
Browse files

Mitig: remove TMR attribute from (continuously refreshed) PWM values

parent 10256d37
Branches
No related merge requests found
......@@ -27,15 +27,15 @@ uint16_t frpms_lin[3];
#define TOTAL_PWM_CLOCKS 255
int16_t curr_pwm_duty1000_1 __xMR = 10;
int16_t curr_pwm_duty1000_2 __xMR = 10;
int16_t curr_pwm_duty1000_3 __xMR = 10;
int16_t curr_pwm_duty1000_1 = 10;
int16_t curr_pwm_duty1000_2 = 10;
int16_t curr_pwm_duty1000_3 = 10;
#define FAN_RAMPUP 800
int16_t goal_pwm_duty1000_1 __xMR = FAN_RAMPUP;
int16_t goal_pwm_duty1000_2 __xMR = FAN_RAMPUP;
int16_t goal_pwm_duty1000_3 __xMR = FAN_RAMPUP;
int16_t goal_pwm_duty1000_1 = FAN_RAMPUP;
int16_t goal_pwm_duty1000_2 = FAN_RAMPUP;
int16_t goal_pwm_duty1000_3 = FAN_RAMPUP;
static uint16_t iter __xMR;
static uint16_t fan_ramp_up_count __xMR = 0;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment