chore: Moved internal queues to correct header
This commit is contained in:
@@ -14,12 +14,4 @@ extern StaticTask_t _incphub_task;
|
|||||||
void incphub_task_preinit();
|
void incphub_task_preinit();
|
||||||
void incphub_task_main(void *params);
|
void incphub_task_main(void *params);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// === For IncpHub client ===
|
|
||||||
|
|
||||||
#include "queue.h"
|
|
||||||
|
|
||||||
extern QueueHandle_t incphub_ingest_queue;
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#include "FreeRTOS.h"
|
#include "FreeRTOS.h"
|
||||||
#include "task.h"
|
#include "task.h"
|
||||||
|
#include "queue.h"
|
||||||
|
|
||||||
#include "nil/nil.h"
|
#include "nil/nil.h"
|
||||||
#include "ntl/ntl.h"
|
#include "ntl/ntl.h"
|
||||||
@@ -19,6 +20,9 @@ struct incphub_cli_t {
|
|||||||
TaskHandle_t task;
|
TaskHandle_t task;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Queue<incphub_msg_t>
|
||||||
|
extern QueueHandle_t incphub_ingest_queue;
|
||||||
|
|
||||||
#ifndef INCPHUB_CLIENT_H_
|
#ifndef INCPHUB_CLIENT_H_
|
||||||
typedef struct incphub_cli_t incphub_cli_t;
|
typedef struct incphub_cli_t incphub_cli_t;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user