unsigned char => uint8_t

This commit is contained in:
Scott Lahteine
2016-09-24 00:51:21 -05:00
parent 8935bed594
commit 076f3a8284
2 changed files with 16 additions and 16 deletions

View File

@ -65,10 +65,10 @@ class Temperature {
static float redundant_temperature;
#endif
static unsigned char soft_pwm_bed;
static uint8_t soft_pwm_bed;
#if ENABLED(FAN_SOFT_PWM)
static unsigned char fanSpeedSoftPwm[FAN_COUNT];
static uint8_t fanSpeedSoftPwm[FAN_COUNT];
#endif
#if ENABLED(PIDTEMP) || ENABLED(PIDTEMPBED)
@ -209,10 +209,10 @@ class Temperature {
static millis_t next_auto_fan_check_ms;
#endif
static unsigned char soft_pwm[HOTENDS];
static uint8_t soft_pwm[HOTENDS];
#if ENABLED(FAN_SOFT_PWM)
static unsigned char soft_pwm_fan[FAN_COUNT];
static uint8_t soft_pwm_fan[FAN_COUNT];
#endif
#if ENABLED(FILAMENT_WIDTH_SENSOR)