41 lines
944 B
C
41 lines
944 B
C
|
|
|
||
|
|
//-------------------------------------------------------------------------------
|
||
|
|
// File Name: debug.h
|
||
|
|
// Brief:
|
||
|
|
// Version: 1.0.0
|
||
|
|
// Create Date: 2018/03/20
|
||
|
|
// Create by: Marshal Lee
|
||
|
|
// Copyright:
|
||
|
|
// Copyright (c) 2017, Richpeace Co., LTD.
|
||
|
|
// All rights reserved.
|
||
|
|
//
|
||
|
|
// Modify by: Marshal Lee
|
||
|
|
// Modify Date: 2018/03/20
|
||
|
|
//-------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#ifndef __DEBUG_H__
|
||
|
|
#define __DEBUG_H__
|
||
|
|
|
||
|
|
#include "config.h"
|
||
|
|
|
||
|
|
//-------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
void InitDebug(void);
|
||
|
|
|
||
|
|
//-------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#define INPUT_NUM 8
|
||
|
|
#define INPUT_STR_LEN 20
|
||
|
|
|
||
|
|
#define OUTPUT_NUM 8
|
||
|
|
#define OUTPUT_STR_LEN 20
|
||
|
|
|
||
|
|
void SetInputNameString(const void* pDat);
|
||
|
|
void SetOutputNameString(const void* pDat);
|
||
|
|
|
||
|
|
//-------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|