How do I notify a freeRTOS Task that a global variable or Mailbox has changed?
For my example, I have 3 tasks; UserInterfaceTask.c, WorkerTask.c and ControllerTask.c. When a user pushes a button the UserInterfaceTask detects it and sends a Queue message to the ControllerTask. The ControllerTask then updates a global Mailbox w...