// button_led_comm.h #ifndef BUTTON_LED_COMM_H #define BUTTON_LED_COMM_H #include "freertos/FreeRTOS.h" #include "freertos/queue.h" // Declare the queue handle as extern. // This tells the compiler that xLedControlQueue is defined elsewhere (in a .c file). extern QueueHandle_t xLedControlQueue; #endif // BUTTON_LED_COMM_H