From ebb058989df5d4bd1808f5063e473f90c6bd37fe Mon Sep 17 00:00:00 2001 From: aixiao Date: Tue, 16 Apr 2024 11:58:43 +0800 Subject: [PATCH] Add SIF files. --- CMakeLists.txt | 1 + Source/SIF.c | 9 +++++++++ Source/SIF.h | 14 ++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 Source/SIF.c create mode 100644 Source/SIF.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 0dc2bf7..cd0bf39 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,6 +30,7 @@ target_Sources(main PRIVATE ${CMAKE_CURRENT_LIST_DIR}/Source/EC800M_GPS.c ${CMAKE_CURRENT_LIST_DIR}/Source/EC800M_4G.c ${CMAKE_CURRENT_LIST_DIR}/Source/HC-04.c + ${CMAKE_CURRENT_LIST_DIR}/Source/SIF.c ) target_include_directories(main PRIVATE diff --git a/Source/SIF.c b/Source/SIF.c new file mode 100644 index 0000000..20c45ea --- /dev/null +++ b/Source/SIF.c @@ -0,0 +1,9 @@ +#include "SIF.h" +#include "common.h" + + + +void SIF(void *p) +{ + (void)p; +} diff --git a/Source/SIF.h b/Source/SIF.h new file mode 100644 index 0000000..ee8316a --- /dev/null +++ b/Source/SIF.h @@ -0,0 +1,14 @@ +#ifndef SIF_H +#define SIF_H + +/* Scheduler include files. */ +#include "FreeRTOS.h" +#include "task.h" +#include "semphr.h" + +#include + + +extern void SIF(void *p); + +#endif