Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adc-dma timer #99

Merged
merged 1 commit into from
Nov 17, 2019
Merged

adc-dma timer #99

merged 1 commit into from
Nov 17, 2019

Conversation

burrbull
Copy link
Contributor

@TheZoq2
Copy link
Member

TheZoq2 commented Aug 18, 2019

Looks like the build failed for stm32f100

geomatsi added a commit to geomatsi/rust-blue-pill-tests that referenced this pull request Sep 1, 2019
Example: reading multiple ADC channels using DMA.
Note: this example uses PR that has not yet been
merged:
see stm32-rs/stm32f1xx-hal#99

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
@geomatsi
Copy link
Contributor

geomatsi commented Sep 1, 2019

Hi @burrbull ,

Thanks for working on extremely useful DMA bits !

I have been testing suggested functionality using the following simple setup:

  • stm32f103 Blue Pill
  • 4 ADC channels (PA0-PA3) connected either to 3V3 or to GND

It looks like suggested use of continuous mode is not what should be used for multiple channels specified in SQRx registers. In this case I always get 4 readings of ADC_CH0 in my tests. IMHO documentation (RM0008 Technical Reference Manual) is a bit fuzzy on what exactly should be used. But after some googling and experiments, it looks like enabled scan mode with disabled continuous mode is what should be used. In this case ADC scans through specified regular sequence and then stops, so we can read data in DMA IRQ handler and setup next scan if needed.

Here is a patch on top of your PR that made things work properly for me:

diff --git a/src/adc.rs b/src/adc.rs
index b15abe9..fa56b43 100644
--- a/src/adc.rs
+++ b/src/adc.rs
@@ -545,12 +545,10 @@ impl<PINS> Receive for AdcDma<PINS> {
 impl<PINS> TransferPayload for AdcDma<PINS> {
     fn start(&mut self) {
         self.channel.start();
-        self.payload.adc.rb.cr2.modify(|_, w| w.cont().set_bit());
         self.payload.adc.rb.cr2.modify(|_, w| w.adon().set_bit());
     }
     fn stop(&mut self) {
         self.channel.stop();
-        self.payload.adc.rb.cr2.modify(|_, w| w.cont().clear_bit());
     }
 }
 
@@ -559,6 +557,8 @@ impl Adc<ADC1> {
     where
         Self:SetChannels<PINS>
     {
+        self.rb.cr1.modify(|_, w| w.scan().set_bit());
+        self.rb.cr2.modify(|_, w| w.cont().clear_bit());
         self.rb.cr1.modify(|_, w| w.discen().clear_bit());
         self.rb.cr2.modify(|_, w| w.align().bit(self.align.into()));
         self.set_samples();
@@ -583,6 +583,7 @@ impl<PINS> AdcDma<PINS> {
         let AdcDma {payload, channel} = self;
         payload.adc.rb.cr2.modify(|_, w| w.dma().clear_bit());
         payload.adc.rb.cr1.modify(|_, w| w.discen().set_bit());
+        payload.adc.rb.cr1.modify(|_, w| w.scan().clear_bit());
 
         (payload.adc, payload.pins, channel)
     }

Thoughts ? Comments ?

Regards,
Sergey

@burrbull
Copy link
Contributor Author

burrbull commented Sep 1, 2019

Thank you for testing. I could not do it last month.

And you are right:

scan mode with disabled continuous mode is what should be used

@burrbull
Copy link
Contributor Author

burrbull commented Sep 1, 2019

I tried to do changes compatible with existent code base and forgot about mode.

What about make generic Adc<ADC1, MODE> and AdcDma<PINS, MODE> ?

src/adc.rs Outdated
14 => self.rb.smpr1.modify(|_, w| w.smp14().bits(sample_time)),
15 => self.rb.smpr1.modify(|_, w| w.smp15().bits(sample_time)),
16 => self.rb.smpr1.modify(|_, w| w.smp16().bits(sample_time)),
17 => self.rb.smpr1.modify(|_, w| w.smp17().bits(sample_time)),
_ => unreachable!(),
}

return;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clippy suggests to remove this return

src/adc.rs Outdated
fn set_sequence(&mut self);
}

impl<PIN> SetChannels<PIN> for Adc<ADC1>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In basic OneShot implementation single channel sequence is configured in convert function. In the case of multiple channels, we have to implement SetChannel anyway to specify particular list of channels. So could you please clarify why do we need this implementation of SetChannels for single channel ? Does it help to maintain backward compatibility for with_dma ?

@burrbull burrbull force-pushed the master branch 4 times, most recently from 3080353 to 679a898 Compare September 1, 2019 11:28
impl Adc<ADC1> {
pub fn with_dma<PINS>(mut self, pins: PINS, dma_ch: C1) -> AdcDma<PINS>
pub fn with_dma<PIN>(mut self, pins: PIN, dma_ch: C1) -> AdcDma<PIN, Continuous>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a nitpick: pin instead of pins ?

@geomatsi
Copy link
Contributor

geomatsi commented Sep 1, 2019

Looks good and works fine. Thanks ! Do you have any specific plans about stm32f100 build failure ?

@burrbull
Copy link
Contributor Author

burrbull commented Sep 1, 2019

Looks good and works fine. Thanks ! Do you have any specific plans about stm32f100 build failure ?

stm32-rs/stm32-rs#270

Waiting for stm32-rs release.

@geomatsi
Copy link
Contributor

geomatsi commented Sep 8, 2019

Hi @burrbull and all,

I did more experiments with ADC/DMA trying to re-configure ADC channels to read for each new transfer. The sequence of operations is as follows:

  • use with_scan_dma to setup AdcDma for channels 0, 1
  • use read and wait to start reading and get the result
  • use split to release adc
  • use with_scan_dma to setup AdcDma for channels 2, 3, 4
  • use read and wait to start reading and get the result
  • use split to release adc
  • repeat

Full example is available here

It turned out, that this approach provided incorrect results. In particular, readings were shifted as if DMA was started from the last ADC channel of the previous configuration. To be more specific, suppose that I have the following levels on ADC inputs:

  • ch0 = 0, ch1 = 3v3
  • ch2 = 3v3, ch3 = 0, ch4 = 0

If I don't switch between these two channel configurations, then I get proper readings:

  • [0, ~4095] for channels 0, 1
  • [~4095, 0, 0] for channels 2, 3, 4

However if I switch between those configurations after each reading, then I get the following readings:

  • [~4095, 0] for channels 0, 1
  • [0, ~4095, 0] for channels 2, 3, 4

It looks like DMA somehow does not reset its starting position after split. The following simple change in with_dma_scan fixes things:

diff --git a/src/adc.rs b/src/adc.rs
index 9b686fc..d99d82a 100644
--- a/src/adc.rs
+++ b/src/adc.rs
@@ -581,6 +581,7 @@ impl Adc<ADC1> {
     where
         Self:SetChannels<PINS>
     {
+        self.rb.cr2.modify(|_, w| w.adon().clear_bit());
         self.rb.cr1.modify(|_, w| w.scan().set_bit());
         self.rb.cr2.modify(|_, w| w.cont().clear_bit());
         self.rb.cr1.modify(|_, w| w.discen().clear_bit());
@@ -588,6 +589,7 @@ impl Adc<ADC1> {
         self.set_samples();
         self.set_sequence();
         self.rb.cr2.modify(|_, w| w.dma().set_bit());
+        self.rb.cr2.modify(|_, w| w.adon().set_bit());
 
         let payload = AdcPayload {
             adc: self,

Though I am not really sure if this is the right thing to do...

Thoughts ? Comments ?

Regards,
Sergey

@TheZoq2
Copy link
Member

TheZoq2 commented Sep 24, 2019

Is the build error here related to stm32-rs/stm32-rs#270?

@geomatsi
Copy link
Contributor

geomatsi commented Nov 2, 2019

To: @TheZoq2 , @burrbull

As far as I can see, required ADC changes have been merged to stm32-rs, so we are waiting for release v0.9.0. Meanwhile I failed to build the following setup:

  • HEAD of stm32f1xx-hal with this PR
  • HEAD of stm32-rs

The build failed for all the 3 targets stm32f10[013]. The root cause was in some name changes for EXTSELW and MMSW. Finally, build succeeded with the following additional patch:

diff --git a/src/adc.rs b/src/adc.rs
index d99d82a..198474a 100644
--- a/src/adc.rs
+++ b/src/adc.rs
@@ -238,7 +238,7 @@ macro_rules! adc_hal {
                 }
 
                 #[inline(always)]
-                pub fn set_external_trigger(&mut self, trigger: crate::pac::$adc::cr2::EXTSELW) {
+                pub fn set_external_trigger(&mut self, trigger: crate::pac::$adc::cr2::EXTSEL_A) {
                     self.rb.cr2.modify(|_, w| w.extsel().variant(trigger))
                 }
 
diff --git a/src/timer.rs b/src/timer.rs
index e03c241..7421363 100644
--- a/src/timer.rs
+++ b/src/timer.rs
@@ -147,7 +147,7 @@ macro_rules! hal {
                     timer
                 }
 
-                pub fn start_master<T>(self, timeout: T, mode: crate::pac::$timbase::cr2::MMSW) -> CountDownTimer<$TIMX>
+                pub fn start_master<T>(self, timeout: T, mode: crate::pac::$timbase::cr2::MMS_A) -> CountDownTimer<$TIMX>
                 where
                     T: Into<Hertz>,
                 {

Regards,
Sergey

@burrbull
Copy link
Contributor Author

burrbull commented Nov 3, 2019

Does it work as expected with disabling ADC?

@geomatsi
Copy link
Contributor

geomatsi commented Nov 3, 2019

Not sure what you mean. Could you please clarify your question ?

I did not test with up-to-date stm32-rs. I am testing with stm32f101 where your current version is working fine. But in my tests I still use additional patch #99 (comment) on top of your PR to make sure that DMA is properly reset on split.

@burrbull
Copy link
Contributor Author

burrbull commented Nov 4, 2019

Rebased.

@TheZoq2
Copy link
Member

TheZoq2 commented Nov 11, 2019

@burrbull Would you mind rebasing this again? :)

@burrbull
Copy link
Contributor Author

Rebased

@TheZoq2
Copy link
Member

TheZoq2 commented Nov 17, 2019

Looks like some great changes, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants