30 lines
574 B
C
30 lines
574 B
C
//-------------------------------------------------------------------------------
|
|
// File Name: boottasks.h
|
|
// Brief:
|
|
// Version: 1.1.0
|
|
// Create Date: 2020/07/31
|
|
// Create by: Marshal Lee
|
|
// Copyright:
|
|
// Copyright (c) 2019, GetonAgain Co., LTD.
|
|
// All rights reserved.
|
|
//
|
|
// Modify by: Marshal Lee
|
|
// Modify Date: 2020/07/31
|
|
//-------------------------------------------------------------------------------
|
|
|
|
#ifndef __BOOTTASKS_H__
|
|
#define __BOOTTASKS_H__
|
|
|
|
#include "config.h"
|
|
|
|
#if (CUR_CORE_BOARD == CORE_BOARD_BOOT)
|
|
|
|
void BootMainTask(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|