How to set GPIO as analog
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-01-30 10:40 PM
I wish to know how Can I set a pin as analog input for ADC.
Bits 31:0MODE[15:0][1:0]: Port x configuration I/O pin y (y = 15 to 0)
These bits are written by software to configure the I/O mode.
00: Input mode
01: General purpose output mode
10: Alternate function mode
11: Analog mode (reset state)
GPIO_MODER_MODE14_? | GPIO_MODER_MODE15_?;
Labels:
- Labels:
-
ADC
-
GPIO-EXTI
-
STM32L0 Series
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-01-30 11:19 PM
If, for example, you want to set PB12 as analog, you can write
GPIOB->MODER |= (3 << (2 * 12));
or
GPIOB->MODER |= (3 << GPIO_MODER_MODE12_Pos);
Note, that it's the reset state in many STM32 families, mainly the STM32Lxx (as is given also in the snippet of documetnation you posted above).
JW
