source: rtems/cpukit/score/cpu/arm/armv7m-exception-priority-handler.c @ 18e1e5b

4.115
Last change on this file since 18e1e5b was e377ad7, checked in by Sebastian Huber <sebastian.huber@…>, on 01/07/13 at 07:48:45

arm: Include <rtems/score/cpu.h>

  • Property mode set to 100644
File size: 787 bytes
Line 
1/**
2 * @file
3 *
4 * @brief ARMV7M Set Exception Priority and Handler
5 */
6
7/*
8 * Copyright (c) 2012 Sebastian Huber.  All rights reserved.
9 *
10 *  embedded brains GmbH
11 *  Obere Lagerstr. 30
12 *  82178 Puchheim
13 *  Germany
14 *  <rtems@embedded-brains.de>
15 *
16 * The license and distribution terms for this file may be
17 * found in the file LICENSE in this distribution or at
18 * http://www.rtems.com/license/LICENSE.
19 */
20
21#ifdef HAVE_CONFIG_H
22  #include "config.h"
23#endif
24
25#include <rtems/score/armv7m.h>
26
27#ifdef ARM_MULTILIB_ARCH_V7M
28
29void _ARMV7M_Set_exception_priority_and_handler(
30  int index,
31  int priority,
32  ARMV7M_Exception_handler handler
33)
34{
35  _ARMV7M_Set_exception_priority( index, priority );
36  _ARMV7M_Set_exception_handler( index, handler );
37}
38
39#endif /* ARM_MULTILIB_ARCH_V7M */
Note: See TracBrowser for help on using the repository browser.