28 lines
566 B
C
28 lines
566 B
C
|
|
//-------------------------------------------------------------------------------
|
||
|
|
// File Name: apptasks.h
|
||
|
|
// Brief:
|
||
|
|
// Version: 1.1.0
|
||
|
|
// Create Date: 2020/07/31
|
||
|
|
// Create by: Marshal Lee
|
||
|
|
// Copyright:
|
||
|
|
// Copyright (c) 2020, Richpeace Co., LTD.
|
||
|
|
// All rights reserved.
|
||
|
|
//
|
||
|
|
// Modify by: Marshal Lee
|
||
|
|
// Modify Date: 2020/07/31
|
||
|
|
//-------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#ifndef __APPTASKS_H__
|
||
|
|
#define __APPTASKS_H__
|
||
|
|
|
||
|
|
#include "config.h"
|
||
|
|
|
||
|
|
#if (CUR_CORE_BOARD == CORE_BOARD_APP)
|
||
|
|
|
||
|
|
void AppMainTask(void);
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|