Advice on STM32F103 GPIO port sharing
First, the "atomic" port ODR issue when more than one function or task may use the same GPIO port. Is the best thing to do ALWAYS to use BRR and/or BSRR to change the ODR values? From what I've read we need to be wary of an interrupt or other task ch...