Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
60b0982b
Commit
60b0982b
authored
7 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
stm32: Add board config option to enable/disable the ADC.
The new option is MICROPY_HW_ENABLE_ADC and is enabled by default.
parent
a36c700d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ports/stm32/adc.c
+4
-0
4 additions, 0 deletions
ports/stm32/adc.c
ports/stm32/modpyb.c
+2
-0
2 additions, 0 deletions
ports/stm32/modpyb.c
ports/stm32/mpconfigboard_common.h
+5
-0
5 additions, 0 deletions
ports/stm32/mpconfigboard_common.h
with
11 additions
and
0 deletions
ports/stm32/adc.c
+
4
−
0
View file @
60b0982b
...
...
@@ -35,6 +35,8 @@
#include
"genhdr/pins.h"
#include
"timer.h"
#if MICROPY_HW_ENABLE_ADC
/// \moduleref pyb
/// \class ADC - analog to digital conversion: read analog values on a pin
///
...
...
@@ -683,3 +685,5 @@ const mp_obj_type_t pyb_adc_all_type = {
.
make_new
=
adc_all_make_new
,
.
locals_dict
=
(
mp_obj_dict_t
*
)
&
adc_all_locals_dict
,
};
#endif // MICROPY_HW_ENABLE_ADC
This diff is collapsed.
Click to expand it.
ports/stm32/modpyb.c
+
2
−
0
View file @
60b0982b
...
...
@@ -218,8 +218,10 @@ STATIC const mp_rom_map_elem_t pyb_module_globals_table[] = {
{
MP_ROM_QSTR
(
MP_QSTR_CAN
),
MP_ROM_PTR
(
&
pyb_can_type
)
},
#endif
#if MICROPY_HW_ENABLE_ADC
{
MP_ROM_QSTR
(
MP_QSTR_ADC
),
MP_ROM_PTR
(
&
pyb_adc_type
)
},
{
MP_ROM_QSTR
(
MP_QSTR_ADCAll
),
MP_ROM_PTR
(
&
pyb_adc_all_type
)
},
#endif
#if MICROPY_HW_ENABLE_DAC
{
MP_ROM_QSTR
(
MP_QSTR_DAC
),
MP_ROM_PTR
(
&
pyb_dac_type
)
},
...
...
This diff is collapsed.
Click to expand it.
ports/stm32/mpconfigboard_common.h
+
5
−
0
View file @
60b0982b
...
...
@@ -40,6 +40,11 @@
#define MICROPY_HW_ENABLE_RNG (0)
#endif
// Whether to enable the ADC peripheral, exposed as pyb.ADC and pyb.ADCAll
#ifndef MICROPY_HW_ENABLE_ADC
#define MICROPY_HW_ENABLE_ADC (1)
#endif
// Whether to enable the DAC peripheral, exposed as pyb.DAC
#ifndef MICROPY_HW_ENABLE_DAC
#define MICROPY_HW_ENABLE_DAC (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