forked from Imagelibrary/rtems
PR 1869/bsps * startup/bspclean.c: New file. * include/tm27.h: Removed. * ChangeLog, Makefile.am, README, preinstall.am, include/bsp.h, include/system_conf.h, make/custom/milkymist.cfg, startup/linkcmds: Complete BSP for Milkymist One supporting Milkymist SOC 1.0.x. Includes new or updated drivers for: - Multi-standard video input (PAL/SECAM/NTSC) - Two DMX512 (RS485) ports - MIDI IN and MIDI OUT ports - VGA output - AC'97 audio - NOR flash - 10/100 Ethernet - Memory card (experimental and incomplete) - USB host connectors (input devices only) - RC5 infrared receiver - RS232 debug port
50 lines
822 B
C
50 lines
822 B
C
/**
|
|
* @file
|
|
*
|
|
* @ingroup bsp_interrupt
|
|
*
|
|
* @brief BSP interrupt support for LM32.
|
|
*/
|
|
|
|
/*
|
|
* Based on concepts of Pavel Pisa, Till Straumann and Eric Valette.
|
|
*
|
|
* Copyright (c) 2008, 2009, 2010
|
|
* embedded brains GmbH
|
|
* Obere Lagerstr. 30
|
|
* D-82178 Puchheim
|
|
* Germany
|
|
* <rtems@embedded-brains.de>
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef LIBBSP_LM32_IRQ_CONFIG_H
|
|
#define LIBBSP_LM32_IRQ_CONFIG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/**
|
|
* @addtogroup bsp_interrupt
|
|
*
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Minimum vector number.
|
|
*/
|
|
#define BSP_INTERRUPT_VECTOR_MIN 0
|
|
|
|
/**
|
|
* @brief Maximum vector number.
|
|
*/
|
|
#define BSP_INTERRUPT_VECTOR_MAX 31
|
|
|
|
/** @} */
|
|
|
|
#endif /* LIBBSP_LM32_IRQ_CONFIG_H */
|