Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
b167912b
Commit
b167912b
authored
12 years ago
by
px4dev
Browse files
Options
Downloads
Patches
Plain Diff
Enable the temperature sensor channel for F2/F4 devices.
parent
bc432b1f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/drivers/stm32/adc/adc.cpp
+13
-0
13 additions, 0 deletions
apps/drivers/stm32/adc/adc.cpp
with
13 additions
and
0 deletions
apps/drivers/stm32/adc/adc.cpp
+
13
−
0
View file @
b167912b
...
...
@@ -91,6 +91,10 @@
#define rJDR4 REG(STM32_ADC_JDR4_OFFSET)
#define rDR REG(STM32_ADC_DR_OFFSET)
#ifdef STM32_ADC_CCR
# define rCCR REG(STM32_ADC_CCR_OFFSET)
#endif
class
ADC
:
public
device
::
CDev
{
public:
...
...
@@ -140,6 +144,9 @@ ADC::ADC(uint32_t channels) :
{
_debug_enabled
=
true
;
/* always enable the temperature sensor */
channels
|=
1
<<
16
;
/* allocate the sample array */
for
(
unsigned
i
=
0
;
i
<
32
;
i
++
)
{
if
(
channels
&
(
1
<<
i
))
{
...
...
@@ -188,10 +195,16 @@ ADC::init()
/* enable the temperature sensor / Vrefint channel if supported*/
rCR2
=
#ifdef ADC_CR2_TSVREFE
/* enable the temperature sensor in CR2 */
ADC_CR2_TSVREFE
|
#endif
0
;
#ifdef ADC_CCR_TSVREFE
/* enable temperature sensor in CCR */
rCCR
=
ADC_CCR_TSVREFE
;
#endif
/* configure for a single-channel sequence */
rSQR1
=
0
;
rSQR2
=
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment