-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlpc_global.c
58 lines (42 loc) · 1.21 KB
/
lpc_global.c
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/******************************************************************//**
* @file lpc_global.c
* @brief Contains Global Variables of LPC17xx
* @version 1.0
* @date 24. July. 2013
* @author Dwijay.Edutech Learning Solutions
**********************************************************************/
/* Peripheral group ----------------------------------------------------------- */
/** @addtogroup GLOBAL
* @{
*/
/* Includes ------------------------------------------------------------------- */
#include "LPC17xx.h"
#include "lpc_types.h"
/* If this source file built with example, the LPC17xx FW library configuration
* file in each example directory ("lpc17xx_libcfg.h") must be included,
* otherwise the default FW library configuration file must be included instead
*/
/** @addtogroup GLOBAL_Variables
* @{
*/
/**
* Systick
*/
uint32_t led_delay;
uchar status = 0;
/**
* Lcd Custom Patterns
*/
//uchar Character1[8] = {0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00};
/**
* GLCD Global Variable
*/
__IO int8_t keybd = 3;
/**
* @}
*/
/* End of Public Functions ---------------------------------------------------- */
/**
* @}
*/
/* --------------------------------- End Of File ------------------------------ */