Commit d78d7732 authored by Jean-Claude BAU's avatar Jean-Claude BAU

Schedule all update actions every 100ms

The time-out was set before to 10ms to accelerate the TX and RX
calibration process. After making some measures, it appears that it does
affect the calibration time.
parent 996eab52
...@@ -42,7 +42,7 @@ static void cb_timer_update_all(int timerId); ...@@ -42,7 +42,7 @@ static void cb_timer_update_all(int timerId);
static timer_parameter_t _timerParameters[] = { static timer_parameter_t _timerParameters[] = {
{ {
.id=TMO_UPDATE_ALL, .id=TMO_UPDATE_ALL,
.tmoMs=10, // 100ms .tmoMs=100, // 100ms
.repeat=1, .repeat=1,
.cb=cb_timer_update_all .cb=cb_timer_update_all
}, },
......
Markdown is supported
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