2019-07-19 04:21 AM
Hi,
I use stm32h743zi nucleo board and I try to GPIOx_BSRR register .This register has two 16 bit registers "BSRRL" and "BSRRH".As I understand BSRRL is used to set bit and then BSRRH is used to reset bit.
GPIOB->BSRRL =(1<<0); to set the zero pin ,but there is an error: #136: struct "<unnamed>" has no field "BSRRL"
2019-07-19 07:14 AM
Thank you for your reply @Imen DAHMEN STM32CubeH7 Firmware Package V1.4.0 / 05-April-2019
2024-01-31 02:10 AM
What has priority?
What if I set in one step GPIOB->BSRR =(1<<0) | (1<<16); ?
Thank you.
2024-01-31 04:00 AM
This is clearly described in the Reference Manual, so please Read The Fine Docs.
2024-01-31 04:43 AM
no it is not. I found only this but probably it is not answer for what I am asking for:
2024-01-31 04:49 AM - edited 2024-01-31 04:51 AM
Well, that's exactly the answer you were looking for. Just read the last sentence.
It would be clearer if "in" was replaced by "via". (Just a hint to ST docs editors. ;) )
2024-01-31 05:56 AM
OK if there would be via, then it is answer for me