remove TODO note relating ADC_BATCHES and calculate_timestamp_timer_period
Having both is not really redundant.
This commit is contained in:
parent
80ed715f5a
commit
f974f4099c
|
@ -68,7 +68,6 @@ const SAMPLE_BUFFER_SIZE_LOG2: usize = 3;
|
||||||
const SAMPLE_BUFFER_SIZE: usize = 1 << SAMPLE_BUFFER_SIZE_LOG2;
|
const SAMPLE_BUFFER_SIZE: usize = 1 << SAMPLE_BUFFER_SIZE_LOG2;
|
||||||
|
|
||||||
// The number of ADC batches in one timer overflow period.
|
// The number of ADC batches in one timer overflow period.
|
||||||
// TODO almost the same as `calculate_timestamp_timer_period`.
|
|
||||||
pub const ADC_BATCHES_LOG2: usize =
|
pub const ADC_BATCHES_LOG2: usize =
|
||||||
32 - SAMPLE_BUFFER_SIZE_LOG2 - ADC_SAMPLE_TICKS_LOG2 as usize;
|
32 - SAMPLE_BUFFER_SIZE_LOG2 - ADC_SAMPLE_TICKS_LOG2 as usize;
|
||||||
pub const ADC_BATCHES: usize = 1 << ADC_BATCHES_LOG2;
|
pub const ADC_BATCHES: usize = 1 << ADC_BATCHES_LOG2;
|
||||||
|
|
Loading…
Reference in New Issue