From 4da892b8a27c743ac59a2cdf1244145325db5830 Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Tue, 8 Dec 2020 15:15:51 +0100 Subject: [PATCH] Update src/digital_input_stamper.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Robert Jördens --- src/digital_input_stamper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/digital_input_stamper.rs b/src/digital_input_stamper.rs index fe8c86b..eaf9683 100644 --- a/src/digital_input_stamper.rs +++ b/src/digital_input_stamper.rs @@ -9,7 +9,7 @@ ///! # Design ///! An input capture channel is configured on DI0 and fed into TIM5's capture channel 4. TIM5 is ///! then run in a free-running mode with a configured frequency and period. Whenever an edge on DI0 -///! triggers, the current TIM5 capture value is recorded as a timestamp. This timestamp can be +///! triggers, the current TIM5 counter value is captured and recorded as a timestamp. This timestamp can be ///! either directly read from the timer channel or can be collected asynchronously via DMA ///! collection. ///!