fix small typos
This commit is contained in:
parent
ad3681f30b
commit
028f4a1bb2
|
@ -26,13 +26,13 @@
|
||||||
///! timestamping is desired in DI1, a separate timer + capture channel will be necessary.
|
///! timestamping is desired in DI1, a separate timer + capture channel will be necessary.
|
||||||
use super::{hal, timers, ADC_SAMPLE_TICKS, SAMPLE_BUFFER_SIZE};
|
use super::{hal, timers, ADC_SAMPLE_TICKS, SAMPLE_BUFFER_SIZE};
|
||||||
|
|
||||||
/// Calculate the period of the digital input timestampe timer.
|
/// Calculate the period of the digital input timestamp timer.
|
||||||
///
|
///
|
||||||
/// # Note
|
/// # Note
|
||||||
/// The period returned will be 1 less than the required period in timer ticks. The value returned
|
/// The period returned will be 1 less than the required period in timer ticks. The value returned
|
||||||
/// can be immediately programmed into a hardware timer period register.
|
/// can be immediately programmed into a hardware timer period register.
|
||||||
///
|
///
|
||||||
/// The period is calcualted to be some power-of-two multiple of the batch size, such that N batches
|
/// The period is calculated to be some power-of-two multiple of the batch size, such that N batches
|
||||||
/// will occur between each timestamp timer overflow.
|
/// will occur between each timestamp timer overflow.
|
||||||
///
|
///
|
||||||
/// # Returns
|
/// # Returns
|
||||||
|
|
|
@ -353,7 +353,7 @@ const APP: () = {
|
||||||
timer5.pause();
|
timer5.pause();
|
||||||
timer5.set_tick_freq(design_parameters::TIMER_FREQUENCY);
|
timer5.set_tick_freq(design_parameters::TIMER_FREQUENCY);
|
||||||
|
|
||||||
// The time stamp timer must run at exactly a multiple of the sample timer based on the
|
// The timestamp timer must run at exactly a multiple of the sample timer based on the
|
||||||
// batch size. To accomodate this, we manually set the prescaler identical to the sample
|
// batch size. To accomodate this, we manually set the prescaler identical to the sample
|
||||||
// timer, but use a period that is longer.
|
// timer, but use a period that is longer.
|
||||||
let mut timer = timers::TimestampTimer::new(timer5);
|
let mut timer = timers::TimestampTimer::new(timer5);
|
||||||
|
|
Loading…
Reference in New Issue