mirror of
https://gitlab.com/fabinfra/fabhardware/fablight2.git
synced 2025-04-20 18:26:26 +02:00
24 lines
491 B
C
24 lines
491 B
C
#ifndef SERIAL_CLIENT_TASK
|
|
#define SERIAL_CLIENT_TASK
|
|
|
|
#include "led_strip.h"
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/queue.h"
|
|
|
|
typedef struct SerialClient_Config
|
|
{
|
|
// Effect Queue
|
|
QueueHandle_t* Effect_Queue;
|
|
} SerialClient_Config;
|
|
|
|
typedef struct SerialClient_Data
|
|
{
|
|
// Effect Queue
|
|
QueueHandle_t* Effect_Queue;
|
|
} SerialClient_Data;
|
|
|
|
void SerialClient_Init(SerialClient_Config* config, SerialClient_Data* data);
|
|
void SerialClient_Task(void *pvParameter);
|
|
|
|
#endif |