-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinterface.h
43 lines (35 loc) · 1.14 KB
/
interface.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* interface.h
*
* Created on: Apr 15, 2019
* Author: cutaway
*/
#ifndef INTERFACE_H_
#define INTERFACE_H_
//*****************************************************************************
//
// Globally defined constants
//
//*****************************************************************************
#define APP_INPUT_BUF_SIZE 128
//#define USE_EEPROM
//*****************************************************************************
//
// Globally variables
//
//*****************************************************************************
extern const char g_chVersion[];
extern const char g_chName[];
extern const char g_chVendor[];
extern const char g_chAuthor[];
extern const char g_chContact[];
extern const char g_chWebsite[];
//*****************************************************************************
//
// Functions defined in interface.c that are made available to other files.
//
//*****************************************************************************
//extern void AppButtonHandler(void);
//extern void AppRainbow(uint32_t ui32ForceUpdate);
//extern void AppHibernateEnter(void);
#endif /* INTERFACE_H_ */