diff options
Diffstat (limited to 'lib/chibios/os/common/ports/ARM/chcore.c')
-rw-r--r-- | lib/chibios/os/common/ports/ARM/chcore.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/chibios/os/common/ports/ARM/chcore.c b/lib/chibios/os/common/ports/ARM/chcore.c new file mode 100644 index 000000000..4375ba26b --- /dev/null +++ b/lib/chibios/os/common/ports/ARM/chcore.c | |||
@@ -0,0 +1,54 @@ | |||
1 | /* | ||
2 | ChibiOS - Copyright (C) 2006,2007,2008,2009,2010,2011,2012,2013,2014, | ||
3 | 2015,2016,2017,2018,2019,2020,2021 Giovanni Di Sirio. | ||
4 | |||
5 | This file is part of ChibiOS. | ||
6 | |||
7 | ChibiOS is free software; you can redistribute it and/or modify | ||
8 | it under the terms of the GNU General Public License as published by | ||
9 | the Free Software Foundation version 3 of the License. | ||
10 | |||
11 | ChibiOS is distributed in the hope that it will be useful, | ||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | GNU General Public License for more details. | ||
15 | |||
16 | You should have received a copy of the GNU General Public License | ||
17 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | /** | ||
21 | * @file ARM/chcore.c | ||
22 | * @brief ARM port code. | ||
23 | * | ||
24 | * @addtogroup ARM_CORE | ||
25 | * @{ | ||
26 | */ | ||
27 | |||
28 | #include "ch.h" | ||
29 | |||
30 | /*===========================================================================*/ | ||
31 | /* Module local definitions. */ | ||
32 | /*===========================================================================*/ | ||
33 | |||
34 | /*===========================================================================*/ | ||
35 | /* Module exported variables. */ | ||
36 | /*===========================================================================*/ | ||
37 | |||
38 | /*===========================================================================*/ | ||
39 | /* Module local types. */ | ||
40 | /*===========================================================================*/ | ||
41 | |||
42 | /*===========================================================================*/ | ||
43 | /* Module local variables. */ | ||
44 | /*===========================================================================*/ | ||
45 | |||
46 | /*===========================================================================*/ | ||
47 | /* Module local functions. */ | ||
48 | /*===========================================================================*/ | ||
49 | |||
50 | /*===========================================================================*/ | ||
51 | /* Module exported functions. */ | ||
52 | /*===========================================================================*/ | ||
53 | |||
54 | /** @} */ | ||