aboutsummaryrefslogtreecommitdiff
path: root/lib/chibios/os/hal/ports/ADUCM/ADUCM41x/aducm_isr.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chibios/os/hal/ports/ADUCM/ADUCM41x/aducm_isr.c')
-rw-r--r--lib/chibios/os/hal/ports/ADUCM/ADUCM41x/aducm_isr.c69
1 files changed, 69 insertions, 0 deletions
diff --git a/lib/chibios/os/hal/ports/ADUCM/ADUCM41x/aducm_isr.c b/lib/chibios/os/hal/ports/ADUCM/ADUCM41x/aducm_isr.c
new file mode 100644
index 000000000..74d3b194b
--- /dev/null
+++ b/lib/chibios/os/hal/ports/ADUCM/ADUCM41x/aducm_isr.c
@@ -0,0 +1,69 @@
1/*
2 ChibiOS - Copyright (C) 2019 Rocco Marco Guglielmi
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
17/**
18 * @file ADUCM36x/ADUCM_isr.h
19 * @brief ADUCM36x ISR handler code.
20 *
21 * @addtogroup ADUCM36x_ISR
22 * @{
23 */
24
25#include "hal.h"
26
27/*===========================================================================*/
28/* Driver local definitions. */
29/*===========================================================================*/
30
31/*===========================================================================*/
32/* Driver exported variables. */
33/*===========================================================================*/
34
35/*===========================================================================*/
36/* Driver local variables. */
37/*===========================================================================*/
38
39/*===========================================================================*/
40/* Driver local functions. */
41/*===========================================================================*/
42
43/*===========================================================================*/
44/* Driver interrupt handlers. */
45/*===========================================================================*/
46
47/*===========================================================================*/
48/* Driver exported functions. */
49/*===========================================================================*/
50
51/**
52 * @brief Enables IRQ sources.
53 *
54 * @notapi
55 */
56void irqInit(void) {
57
58}
59
60/**
61 * @brief Disables IRQ sources.
62 *
63 * @notapi
64 */
65void irqDeinit(void) {
66
67}
68
69/** @} */