receiver: add channel_configuration.reset_all()

Change-Id: I712f773a82d88fad77535821ce33ac54fbf52944
This commit is contained in:
Vadim Yanitskiy 2019-01-19 16:36:09 +07:00
parent c120422a24
commit 4f3fd6de7d
1 changed files with 5 additions and 0 deletions

View File

@ -161,6 +161,11 @@ class channel_configuration
d_timeslots_descriptions[timeslot_nr].set_burst_type(burst_nr, b_type);
}
void reset_all(void) {
for (int i = 0; i < TS_PER_FRAME; i++)
set_multiframe_type(i, unknown);
}
burst_type get_burst_type(burst_counter burst_nr);
};