forked from suspect-devices/lpc1114-blink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h
57 lines (44 loc) · 1.96 KB
/
config.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/** \file config.h
* \brief Basic configuration of the project
* \author Freddie Chopin, http://www.freddiechopin.info/
* \date 2012-01-08
*/
/******************************************************************************
* project: lpc1114_blink_led
* chip: LPC1114
* compiler: arm-none-eabi-gcc (Sourcery CodeBench Lite 2011.09-69) 4.6.1
******************************************************************************/
#ifndef CONFIG_H_
#define CONFIG_H_
#include "hdr/hdr_gpio_masked_access.h"
/*
+=============================================================================+
| global definitions
+=============================================================================+
*/
#define CRYSTAL 12000000 ///< quartz crystal resonator which is connected to the chip
#define FREQUENCY 50000000 ///< desired target frequency of the core
#define LED_GPIO LPC_GPIO1 ///< GPIO port to which the LED is connected
#define LED_pin 8 ///< pin number of the LED
#define LED (1 << LED_pin)
/// "variable" to manipulate the pin directly via GPIO masked access
#define LED_gma gpio_masked_access_t GPIO_MASKED_ACCESS(LED_GPIO, LED_pin)
/*
+=============================================================================+
| strange variables
+=============================================================================+
*/
/*
+=============================================================================+
| global variables
+=============================================================================+
*/
/*
+=============================================================================+
| global functions' declarations
+=============================================================================+
*/
/******************************************************************************
* END OF FILE
******************************************************************************/
#endif /* CONFIG_H_ */