FreeRTOS: Inter-Task Communication
FreeRTOS is a type of real-time operating system. It is similar to all RTOS, having a serious problem with inter-task communication and resource sharing. In RTOS, inter-task communication is not like passing variables between normal functions. Normal functions can pass the data to a global variable or pass it to another function by returning the value. If the global variable is being used by RTOS, the data might be written by higher priority task before the lower priority task read Read more…