I'm having an issue with the ESP32-IDF auto-generated code, where the following code is used to flip the pin level by default in an example code of a flashing light
static uint8_t led_state = 0;
...
led_state = !led_state; toggle the pin state
how to understand the '!' operation here
I write a small program like this
#include <stdio.h>
#include <stdint.h>
int main(void)
{
uint8_t i = 2;
printf("i = %d\n", i);
i = !i;
printf("i toggled\n");
printf("i = %d\n", i);
i = !i;
printf("i toggled\n");
printf("i = %d\n", i);
return 0;
}
and the output is
i = 2
i toggled
i = 0
i toggled
i = 1
!
is the logical NOT operator.0
(a false value).1
(a true value).C logical operators
If you need to set a specific bit, you can use a shift.
If you want to toggle a specific bit, you can use an exclusive or.