source: rtems/c/src/lib/libbsp/shared/src/irq-default-handler.c @ ede1a41

5
Last change on this file since ede1a41 was ede1a41, checked in by Sebastian Huber <sebastian.huber@…>, on 06/21/16 at 11:12:31

Make rtems/print.h independent of rtems/bspIo.h

  • Property mode set to 100644
File size: 552 bytes
Line 
1/*
2 * Copyright (c) 2008-2012 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Obere Lagerstr. 30
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#include <inttypes.h>
16
17#include <rtems/bspIo.h>
18
19#include <bsp/irq-generic.h>
20
21void bsp_interrupt_handler_default(rtems_vector_number vector)
22{
23  printk("spurious interrupt: %" PRIu32 "\n", vector);
24}
Note: See TracBrowser for help on using the repository browser.