LPCOpen Platform for LPC18XX/43XX microcontrollers
18XX43XX
LPCOpen Platform for the NXP LPC18XX/43XX family of Microcontrollers
Main Page
Modules
Data Structures
Files
File List
Globals
software
lpc_core
lpc_board
boards_43xx
nxp_lpclink2_4370
board.h
Go to the documentation of this file.
1
/*
2
* @brief LPC-Link 2 4370 board file
3
*
4
* @note
5
* Copyright(C) NXP Semiconductors, 2013
6
* All rights reserved.
7
*
8
* @par
9
* Software that is described herein is for illustrative purposes only
10
* which provides customers with programming information regarding the
11
* LPC products. This software is supplied "AS IS" without any warranties of
12
* any kind, and NXP Semiconductors and its licensor disclaim any and
13
* all warranties, express or implied, including all implied warranties of
14
* merchantability, fitness for a particular purpose and non-infringement of
15
* intellectual property rights. NXP Semiconductors assumes no responsibility
16
* or liability for the use of the software, conveys no license or rights under any
17
* patent, copyright, mask work right, or any other intellectual property rights in
18
* or to any products. NXP Semiconductors reserves the right to make changes
19
* in the software without notification. NXP Semiconductors also makes no
20
* representation or warranty that such application will be suitable for the
21
* specified use without further testing or modification.
22
*
23
* @par
24
* Permission to use, copy, modify, and distribute this software and its
25
* documentation is hereby granted, under NXP Semiconductors' and its
26
* licensor's relevant copyrights in the software, without fee, provided that it
27
* is used in conjunction with NXP Semiconductors microcontrollers. This
28
* copyright, permission, and disclaimer notice must appear in all copies of
29
* this code.
30
*/
31
32
#ifndef __BOARD_H_
33
#define __BOARD_H_
34
35
#include "
chip.h
"
36
/* board_api.h is included at the bottom of this file after DEBUG setup */
37
38
#ifdef __cplusplus
39
extern
"C"
{
40
#endif
41
54
#define DEBUG_ENABLE
55
60
//#define DEBUG_SEMIHOSTING
61
65
#define DEBUG_UART LPC_USART2
66
67
68
/* Board name */
69
#define BOARD_NXP_LPCLINK2_4370
70
71
72
73
74
75
/* For USBLIB examples */
76
#define LEDS_LED1 0x01
77
#define LEDS_LED2 0x02
78
#define LEDS_LED3 0x04
79
#define LEDS_LED4 0x08
80
#define LEDS_NO_LEDS 0x00
81
#define BUTTONS_BUTTON1 0x01
82
#define JOY_UP 0x01
83
#define JOY_DOWN 0x02
84
#define JOY_LEFT 0x04
85
#define JOY_RIGHT 0x08
86
#define JOY_PRESS 0x10
87
#define NO_BUTTON_PRESSED 0x00
88
93
void
Board_Buttons_Init
(
void
);
94
99
uint32_t
Buttons_GetStatus
(
void
);
100
105
void
Board_Joystick_Init
(
void
);
106
111
uint8_t
Joystick_GetStatus
(
void
);
112
118
void
Board_ENET_GetMacADDR
(uint8_t *mcaddr);
119
124
void
Board_ADC_Init
(
void
);
125
131
void
Board_I2C_Init
(
I2C_ID_T
id
);
132
142
STATIC
INLINE
void
Board_I2C_EnableFastPlus
(
I2C_ID_T
id
)
143
{
144
Chip_SCU_I2C0PinConfig
(
I2C0_FAST_MODE_PLUS
);
145
}
146
153
STATIC
INLINE
void
Board_I2C_DisableFastPlus
(
I2C_ID_T
id
)
154
{
155
Chip_SCU_I2C0PinConfig
(
I2C0_STANDARD_FAST_MODE
);
156
}
157
162
void
Board_LCD_Init
(
void
);
163
173
void
Board_UART_Init
(
LPC_USART_T
*pUART);
174
179
void
Board_InitLCDController
(
void
);
180
185
void
Board_InitTouchController
(
void
);
186
193
bool
Board_GetTouchPos
(int16_t *pX, int16_t *pY);
194
199
void
Board_SetLCDBacklight
(uint8_t Intensity);
200
205
void
Board_SDMMC_Init
(
void
);
206
212
void
Board_SSP_Init
(
LPC_SSP_T
*pSSP);
213
220
void
Board_Audio_Init
(
LPC_I2S_T
*pI2S,
int
micIn);
221
227
void
Board_DAC_Init
(
LPC_DAC_T
*pDAC);
228
233
#include "
board_api.h
"
234
235
#ifdef __cplusplus
236
}
237
#endif
238
239
#endif
/* __BOARD_H_ */
Generated on Fri Feb 20 2015 21:29:41 for LPCOpen Platform for LPC18XX/43XX microcontrollers by
1.8.3.1