source: rtems/c/src/lib/libbsp/arm/lpc24xx/startup/start-config-pinsel.c @ 991fdb33

4.115
Last change on this file since 991fdb33 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup lpc24xx
5 *
6 * @brief BSP start pin selection configuration.
7 */
8
9/*
10 * Copyright (c) 2011-2012 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Obere Lagerstr. 30
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.org/license/LICENSE.
21 */
22
23#include <bsp/start-config.h>
24
25BSP_START_DATA_SECTION const lpc24xx_pin_range
26  lpc24xx_start_config_pinsel [] = {
27#if defined(LPC24XX_EMC_MT48LC4M16A2) \
28  && defined(LPC24XX_EMC_M29W160E)
29  LPC24XX_PIN_EMC_A_0_20,
30  LPC24XX_PIN_EMC_D_0_15,
31  LPC24XX_PIN_EMC_RAS,
32  LPC24XX_PIN_EMC_CAS,
33  LPC24XX_PIN_EMC_WE,
34  LPC24XX_PIN_EMC_DYCS_0,
35  LPC24XX_PIN_EMC_CLK_0,
36  LPC24XX_PIN_EMC_CKE_0,
37  LPC24XX_PIN_EMC_DQM_0,
38  LPC24XX_PIN_EMC_DQM_1,
39  LPC24XX_PIN_EMC_OE,
40  LPC24XX_PIN_EMC_CS_1,
41#endif
42#if (defined(LPC24XX_EMC_IS42S32800D7) || defined(LPC24XX_EMC_W9825G2JB75I)) \
43  && (defined(LPC24XX_EMC_M29W320E70) || defined(LPC24XX_EMC_SST39VF3201))
44  LPC24XX_PIN_EMC_A_0_22,
45  LPC24XX_PIN_EMC_D_0_31,
46  LPC24XX_PIN_EMC_RAS,
47  LPC24XX_PIN_EMC_CAS,
48  LPC24XX_PIN_EMC_WE,
49  LPC24XX_PIN_EMC_DYCS_0,
50  LPC24XX_PIN_EMC_CLK_0,
51  LPC24XX_PIN_EMC_CKE_0,
52  LPC24XX_PIN_EMC_DQM_0,
53  LPC24XX_PIN_EMC_DQM_1,
54  LPC24XX_PIN_EMC_DQM_2,
55  LPC24XX_PIN_EMC_DQM_3,
56  LPC24XX_PIN_EMC_OE,
57  LPC24XX_PIN_EMC_CS_0,
58#endif
59#if defined(LPC24XX_EMC_IS42S32800B)
60  LPC24XX_PIN_EMC_A_0_14,
61  LPC24XX_PIN_EMC_D_0_31,
62  LPC24XX_PIN_EMC_RAS,
63  LPC24XX_PIN_EMC_CAS,
64  LPC24XX_PIN_EMC_WE,
65  LPC24XX_PIN_EMC_DYCS_0,
66  LPC24XX_PIN_EMC_CLK_0,
67  LPC24XX_PIN_EMC_CKE_0,
68  LPC24XX_PIN_EMC_DQM_0,
69  LPC24XX_PIN_EMC_DQM_1,
70  LPC24XX_PIN_EMC_DQM_2,
71  LPC24XX_PIN_EMC_DQM_3,
72#endif
73  LPC24XX_PIN_TERMINAL
74};
Note: See TracBrowser for help on using the repository browser.