cpu_conf.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Rakendra Thapa <rakendrathapa@gmail.com
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser General
5  * Public License v2.1. See the file LICENSE in the top level directory for more
6  * details.
7  */
8 
21 #ifndef CPU_CONF_H
22 #define CPU_CONF_H
23 
24 #include "cpu_conf_common.h"
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
30 #include "hw_ints.h"
31 #include "hw_memmap.h"
32 #include "hw_nvic.h"
33 #include "hw_sysctl.h"
34 #include "hw_types.h"
35 #include "cortex-m4-def.h"
36 #include "stellaris_periph/cpu.h"
37 #include "stellaris_periph/interrupt.h"
38 #include "stellaris_periph/sysctl.h"
39 #include "stellaris_periph/adc.h"
40 #include "stellaris_periph/gpio.h"
41 #include "stellaris_periph/timer.h"
42 #include "stellaris_periph/pin_map.h"
43 #include "stellaris_periph/uart.h"
44 #include "stellaris_periph/ssi.h"
45 #include "stellaris_periph/fpu.h"
46 #include "stellaris_periph/rom.h"
47 
48 #ifdef CPU_MODEL_LM4F120H5QR
49 #include "vendor/lm4f120h5qr.h"
50 #endif
51 
56 #define CPU_DEFAULT_IRQ_PRIO (1U)
57 #define CPU_IRQ_NUMOF (139U)
58 #define CPU_FLASH_BASE FLASH_BASE
59 #define CPU_HAS_BITBAND (1)
66 extern void setup_fpu(void);
67 extern void cpu_clock_init(int);
70 #ifdef __cplusplus
71 }
72 #endif
73 
74 #endif /* CPU_CONF_H */