Resolved! Difference between using logical not operator and comparison to (boolean) constants
This is probably a *** question, but I was wondering if there is a difference in performance between the following C statements given b is a standard boolean:bool b = false; //... if (b == false) //... if (!b) //...Will gcc in STM32 Cube IDE translat...