Add SIF files.

This commit is contained in:
2024-04-16 11:58:43 +08:00
parent e59a423d2c
commit ebb058989d
3 changed files with 24 additions and 0 deletions

9
Source/SIF.c Normal file
View File

@@ -0,0 +1,9 @@
#include "SIF.h"
#include "common.h"
void SIF(void *p)
{
(void)p;
}

14
Source/SIF.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef SIF_H
#define SIF_H
/* Scheduler include files. */
#include "FreeRTOS.h"
#include "task.h"
#include "semphr.h"
#include <stdio.h>
extern void SIF(void *p);
#endif