Toggle pin 5 of a GPIO output register.
Standard "blink" loop. Given:
```c
volatile unsigned int *GPIO_ODR = (volatile unsigned int *)0x40020014;
```
Toggle bit 5 with `*GPIO_ODR ^= (1u << 5);`. Same pattern works on AVR PORT, ESP32, etc.
Sign in to save your code and track progress across devices.