STM32F373 SDADC lld

This forum is about you. Feel free to discuss anything is related to embedded and electronics, your awesome projects, your ideas, your announcements, not necessarily related to ChibiOS but to embedded in general. This forum is NOT for support.
beause
Posts: 6
Joined: Tue Feb 26, 2013 6:54 pm

STM32F373 SDADC lld

Postby beause » Mon Mar 04, 2013 5:36 pm

Hello,

I've been tasked with getting the SDADC's working on the STM 32373eval board.

I noticed Giovanni, that you submitted some code for the 32F37x and also a demo program for the 32373eval board on Sunday Mar. 3rd 2013.

Is there any SDADC lld driver code that is a work in progress that hasn't been submitted? I don't want to duplicate any work that you are doing, and would like to be able to merge cleanly.

I have taken the adc_lld.[ch] from the os/hal/platforms/STM32F4xx code and modified it so that it works with the STM32F37x. I have a demo program that samples the analog POT on the 32373eval board, as well as the internal temp sensor.

I'm in the process of pushing my changes up to a github repo. Hope that is of interest to you.

User avatar
Giovanni
Site Admin
Posts: 14455
Joined: Wed May 27, 2009 8:48 am
Location: Salerno, Italy
Has thanked: 1076 times
Been thanked: 922 times
Contact:

Re: STM32F373 SDADC lld

Postby Giovanni » Mon Mar 04, 2013 8:22 pm

Hi,

Thanks for the head up. It is definitely planned, I know there are also other persons waiting for that driver so please go ahead while I do the re-validation of all the other drivers on that platform.

Giovanni

beause
Posts: 6
Joined: Tue Feb 26, 2013 6:54 pm

Re: STM32F373 SDADC lld

Postby beause » Mon Mar 11, 2013 10:06 pm

Hi Giovanni,

I've finished my changes for the STM32F373 SDADC. I have a fork of mabl/ChibiOS with my changes on github, but was wondering in what form do you want code contributions?

User avatar
Giovanni
Site Admin
Posts: 14455
Joined: Wed May 27, 2009 8:48 am
Location: Salerno, Italy
Has thanked: 1076 times
Been thanked: 922 times
Contact:

Re: STM32F373 SDADC lld

Postby Giovanni » Tue Mar 12, 2013 8:45 am

Hi,

Just post the files zipped here in the forum.

Giovanni

beause
Posts: 6
Joined: Tue Feb 26, 2013 6:54 pm

Re: STM32F373 SDADC lld

Postby beause » Tue Mar 12, 2013 3:23 pm

Please find attached a zip file with contributions for the STM32F373 SDADC support. There is also a demo program that uses the STM 32373eval board's PT100 temperature sensor. This was ported from the STM 32373 eval board software.

Please look in particular at the os/hal/platforms/STM32F37x/adc_lld.[ch] files.
Attachments
chibios-STM32F373-sdadc.zip
ChibiOS/RT with changes for STM32F37x SDADC support.
(3.7 MiB) Downloaded 941 times

User avatar
Giovanni
Site Admin
Posts: 14455
Joined: Wed May 27, 2009 8:48 am
Location: Salerno, Italy
Has thanked: 1076 times
Been thanked: 922 times
Contact:

Re: STM32F373 SDADC lld

Postby Giovanni » Tue Mar 12, 2013 9:42 pm

Hi,

Thanks, I will review it for inclusion.

Giovanni

User avatar
Giovanni
Site Admin
Posts: 14455
Joined: Wed May 27, 2009 8:48 am
Location: Salerno, Italy
Has thanked: 1076 times
Been thanked: 922 times
Contact:

Re: STM32F373 SDADC lld

Postby Giovanni » Sun Mar 17, 2013 8:54 am

Hi,

Sorry but the driver is not mature enough for inclusion as-is. I'll have to do some rework on it. I am committing the code on the repository but it is not meant to be used yet.

The main problem is that apparently you tried to start from the STM32F4 driver whose configuration settings are very different because it has to deal with the "advanced" DMA, the STM32F37x uses the normal DMA unit.

Except for problems with the configuration the code looks good, I liked how you interfaced both ADC types using a single structure.

Giovanni

jgobuyan
Posts: 5
Joined: Tue May 14, 2013 2:46 am

Re: STM32F373 SDADC lld

Postby jgobuyan » Tue May 14, 2013 3:04 am

Hi,

I am looking at the latest SDADC code in mabl and there seems to be a type conflict with adcsample_t. For regular ADC conversions, uint16_t is appropriate, but for all other conversion types (injected ADC, regular and injected SDADC), the type should really be signed. I realize that you are only supporting regular ADC conversions and injected SDADC conversions with the current, but the conflict does exist between these two conversion types. Do you have any thoughts on how this could be resolved? I would like to avoid casting between signed and unsigned types if at all possible.

User avatar
Giovanni
Site Admin
Posts: 14455
Joined: Wed May 27, 2009 8:48 am
Location: Salerno, Italy
Has thanked: 1076 times
Been thanked: 922 times
Contact:

Re: STM32F373 SDADC lld

Postby Giovanni » Tue May 14, 2013 8:07 am

Hi,

You could just cast to int16_t, another solution could be to make that type an union of a signed and an unsigned but this would break code compatibility.

Giovanni


Return to “User Projects”

Who is online

Users browsing this forum: No registered users and 7 guests