/**
|
******************************************************************************
|
* @file : functions.h
|
* @brief : Header for functions.c file.
|
* This file contains the user functions defines of the application.
|
******************************************************************************
|
*/
|
#ifndef __DEBUG_H__
|
#define __DEBUG_H__
|
#include <stdint.h>
|
|
int add1(int a,int b);
|
void clearscreen(void );
|
void Locate(int x,int y);
|
int FormatHex(char * buf1, unsigned char * data, int n);
|
int ShowInitInfo(void);
|
int ShowRunningInfo(void);
|
int ADCProcess(void);
|
int PowerDownProcess(void);
|
int PowerRecoverProcess(void);
|
|
|
#endif /* __DEBUG_H__ */
|