QuakeGod
2023-02-01 2364f06313efb8eb97d4ae741a31cdd2efc175d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
  ******************************************************************************
  * @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__ */