Newer
Older
ESP32-RetroPlay / main / tasks / button_led_comm.h
@Jerry Xie Jerry Xie 19 days ago 326 bytes Initial Commit
// 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