Solved
One by one port pin configuration locking
There is no clear information in the reference manual about port pin configuration locking one by one. For example (desired code):
void SomeFunction()
{
// locking pin configuration one by one
LL_GPIO_LockPin(GPIOA, LL_GPIO_PIN_0);
LL_GPIO_LockPin(GPIOA, LL_GPIO_PIN_1);
LL_GPIO_LockPin(GPIOA, LL_GPIO_PIN_2);
...
}
May I lock pin's configuration one by one, not all at once (see code below)?
void OtherFunction()
{
// locking all pins configuration at once
LL_GPIO_LockPin(GPIOA, LL_GPIO_PIN_2 | LL_GPIO_PIN_1 | LL_GPIO_PIN_0);
...
}
