Marvee Amasi
DIIDevHeads IoT Integration Server
•Created by Dtynin on 9/13/2024 in #🪲-firmware-and-baremetal
How to prevent ADC interrupt from affecting LCD display on AVR MCU?
The LCD update is performed in the main loop if you observe, didnt do it in the interrupt handler, so no global interrupts
cli()
or sei()
are used. It will minimize the time spent with interrupts disabled, to improve your overall system performance13 replies