Page 1 of 1

STM32F103C8T6 GPIOB_ODR

Posted: Mon Aug 17, 2020 4:57 pm
by Lin1959
Hello!
ADC data output LCD, terminal, portB.
LCD yes, terminal yes.
How to output data to the GPIOB port? No pinMode.

Re: STM32F103C8T6 GPIOB_ODR

Posted: Tue Aug 18, 2020 7:41 am
by ag123
the answer is probably somewhere inside the combination of
RM0008 STM32F103 ref manual
https://www.st.com/resource/en/referenc ... ronics.pdf
and the source codes (in particular the headers and the source codes as examples and the examples)

Re: STM32F103C8T6 GPIOB_ODR

Posted: Tue Aug 18, 2020 3:45 pm
by Lin1959
Thank!

“The hardest thing of all is to find a black cat in a dark room, especially if there is no cat.”

― Confucius

Re: STM32F103C8T6 GPIOB_ODR

Posted: Wed Aug 19, 2020 12:31 am
by GonzoG
in STM core:
GPIOB->ODR = x;

Re: STM32F103C8T6 GPIOB_ODR

Posted: Wed Aug 19, 2020 4:24 pm
by Lin1959
GPIO_Digital_Output(@GPIOB_BASE, _GPIO_PINMASK_ALL)
GPIOB_ODR =x
//mikroBasic//