From 51ef859f602e4f50e9e998e2443b5d15778fab4d Mon Sep 17 00:00:00 2001 From: Clyne Date: Mon, 3 Apr 2023 15:05:11 -0400 Subject: [PATCH] Update '01-adc/README.md' --- 01-adc/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/01-adc/README.md b/01-adc/README.md index 665a180..3967369 100644 --- a/01-adc/README.md +++ b/01-adc/README.md @@ -95,9 +95,9 @@ multiple conversions in a row, with channels arranged in order according to the `SQR` registers. We are doing a single conversion of a single channel, channel one. So, we -write a `1` for the first sequence channel. By setting the register with an -`=` instead of just setting bits, we clear the L field of the register to zero -which sets a sequence length of one. +write a `1` for the first sequence channel. By setting the whole register with +`=`, we clear the L field of the register to zero; this sets the sequence length +to one. ```cpp ADC1->SQR1 = 1 << ADC_SQR1_SQ1_Pos;