FreeRTOS - Interrupt Management
Given the code snippet:
taskENTER_CRITICAL(); sharedCounter++; taskEXIT_CRITICAL();What is the effect of this code on sharedCounter in a multitasking environment?
