source: rtems/c/src/lib/libbsp/arm/lpc32xx/startup/bspstart.c @ b1e8a58

4.115
Last change on this file since b1e8a58 was dd8df59, checked in by Sebastian Huber <sebastian.huber@…>, on 11/14/12 at 12:59:27

bsps: Interrupt initialization error is fatal

  • Property mode set to 100644
File size: 625 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup lpc32xx
5 *
6 * @brief Startup code.
7 */
8
9/*
10 * Copyright (c) 2009-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.com/license/LICENSE.
21 */
22
23#include <bsp.h>
24#include <bsp/bootcard.h>
25#include <bsp/irq-generic.h>
26#include <bsp/irq.h>
27#include <bsp/linker-symbols.h>
28#include <bsp/lpc32xx.h>
29
30void bsp_start(void)
31{
32  bsp_interrupt_initialize();
33}
Note: See TracBrowser for help on using the repository browser.