提交 | 用户 | age
|
483170
|
1 |
/** |
Q |
2 |
****************************************************************************** |
|
3 |
* @file : functions.h |
|
4 |
* @brief : Header for functions.c file. |
|
5 |
* This file contains the user functions defines of the application. |
|
6 |
****************************************************************************** |
|
7 |
*/ |
|
8 |
#ifndef __DEBUG_H__ |
|
9 |
#define __DEBUG_H__ |
|
10 |
#include <stdint.h> |
|
11 |
|
|
12 |
int add1(int a,int b); |
|
13 |
void clearscreen(void ); |
|
14 |
void Locate(int x,int y); |
|
15 |
int FormatHex(char * buf1, unsigned char * data, int n); |
|
16 |
int ShowInitInfo(void); |
|
17 |
int ShowRunningInfo(void); |
|
18 |
int ADCProcess(void); |
|
19 |
int PowerDownProcess(void); |
|
20 |
int PowerRecoverProcess(void); |
|
21 |
|
|
22 |
|
|
23 |
#endif /* __DEBUG_H__ */ |