chore: Moved internal queues to correct header

This commit is contained in:
2026-06-29 15:07:01 +01:00
parent 4a6f07e421
commit a72becf656
2 changed files with 4 additions and 8 deletions

View File

@@ -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

View File

@@ -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