add timer validation call

This commit is contained in:
Mark Whitehorn
2017-02-21 12:06:19 -07:00
committed by Lorenz Meier
parent b5169b0c7b
commit bbebf980d8
+6 -2
View File
@@ -412,8 +412,12 @@ void io_timer_force_update()
{
for (int i = 0; i < MAX_IO_TIMERS; i++) {
if (timer_freq[i] == 8) {
// force update of channel compare register
rEGR(i) |= GTIM_EGR_UG;
int rv = io_timer_validate_channel_index(i);
if (rv == 0) {
// force update of channel compare register
rEGR(i) |= GTIM_EGR_UG;
}
}
}
}