pwmcmds: Update event prototypes to use uint_fast8_t

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2017-08-06 11:19:30 -04:00
parent dca0fc91ea
commit d50f4e23e0
1 changed files with 2 additions and 2 deletions

View File

@ -16,13 +16,13 @@ struct pwm_out_s {
uint8_t value, default_value;
};
static uint8_t
static uint_fast8_t
pwm_end_event(struct timer *timer)
{
shutdown("Missed scheduling of next hard pwm event");
}
static uint8_t
static uint_fast8_t
pwm_event(struct timer *timer)
{
struct pwm_out_s *p = container_of(timer, struct pwm_out_s, timer);