EVE 1.0
irq-prio.h
Go to the documentation of this file.
1 #ifndef EVE_IRQ_PRIO_H_INCLUDED
2 #define EVE_IRQ_PRIO_H_INCLUDED
3 
4 #include <app_util_platform.h>
5 
6 /**********************************************************************/
7 /*
8  * Copyright (c) 2016, Jetro AS
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without modification,
12  * are permitted provided that the following conditions are met:
13  *
14  * 1. Redistributions of source code must retain the above copyright notice,
15  * this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright notice,
17  * this list of conditions and the following disclaimer in the documentation
18  * and/or other materials provided with the distribution.
19  * 3. The name of the author may not be used to endorse or promote products
20  * derived from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONRIBUTORS ``AS IS'' AND ANY EXPRESS
23  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
25  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
27  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
31  * OF SUCH DAMAGE.
32  *
33  * This file is part of the EVE platform.
34  */
35 
36  /**
37  * \file
38  * \brief IRQ priorities
39  *
40  * \author DT, Jetro AS
41  */ /******************************************************************/
42 
43 /**
44  * \addtogroup irq IRQ
45  * @{
46  */
47 
48 /**@brief IRQ priorities. */
50 {
51  EVE_IRQ_PRIORITY_HIGH = APP_IRQ_PRIORITY_HIGH,
52  EVE_IRQ_PRIORITY_MID = APP_IRQ_PRIORITY_MID,
53  EVE_IRQ_PRIORITY_LOW = APP_IRQ_PRIORITY_LOW,
54  EVE_IRQ_PRIORITY_LOWEST = APP_IRQ_PRIORITY_LOWEST,
55 };
56 
57 /** @} */ /* irq */
58 
59 #endif /* EVE_IRQ_PRIO_H_INCLUDED */
EVE_IRQ_PRIORITIES
IRQ priorities.
Definition: irq-prio.h:49