shoh: Fix project includes

main: Remove unused variable.
This commit is contained in:
RedHawk
2023-04-26 11:36:43 +03:00
parent daec484c01
commit 3517f171f3
3 changed files with 17 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
#include "FreeRTOS.h"
#include "task.h"
#include <cr_section_macros.h>
#include "common/ThreadCommon.h"
#include "ThreadCommon.h"
#include "Master.h"
@@ -24,7 +24,6 @@ int main(void)
static_cast<void*>(qmanager));
//<Queue_test>
QueueHandle_t master_event_all_q = qmanager->getQueue(ThreadCommon::QueueManager::master_event_all);
Event* e = new Event(Event::Rotary, 1);
qmanager->send<Event>(ThreadCommon::QueueManager::master_event_all, e, 1000);

View File

@@ -10,8 +10,8 @@
#include "chip.h"
#include "board.h"
#include "threads/common/ThreadCommon.h"
#include "threads/common/Event.h"
#include "ThreadCommon.h"
#include "Event.h"
#include "task.h"
#include <string>