26 lines
535 B
C
26 lines
535 B
C
//-------------------------------------------------------------------------------
|
|
// File Name: tasks.h
|
|
// Brief:
|
|
// Version: 1.1.0
|
|
// Create Date: 2021/07/20
|
|
// Create by: Marshal Lee
|
|
// Copyright:
|
|
// Copyright (c) 2021, Richpeace Co., LTD.
|
|
// All rights reserved.
|
|
//
|
|
// Modify by: Marshal Lee
|
|
// Modify Date: 2021/07/20
|
|
//-------------------------------------------------------------------------------
|
|
|
|
#ifndef __TASKS_H__
|
|
#define __TASKS_H__
|
|
|
|
#include "config.h"
|
|
|
|
void SetVectorTable(void);
|
|
void MainTasks(void);
|
|
|
|
#endif
|
|
|
|
|