Paparazzi UAS  v5.10_stable-5-g83a0da5-dirty
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
mcu.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010-2012 The Paparazzi team
3  *
4  * This file is part of Paparazzi.
5  *
6  * Paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * Paparazzi 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 Paparazzi; see the file COPYING. If not, write to
18  * the Free Software Foundation, 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  */
22 
28 #include "mcu.h"
29 #include "std.h"
30 
31 #ifdef PERIPHERALS_AUTO_INIT
32 #include "mcu_periph/sys_time.h"
33 #ifdef USE_LED
34 #include "led.h"
35 #endif
36 #if defined RADIO_CONTROL
37 #if defined RADIO_CONTROL_LINK || defined RADIO_CONTROL_SPEKTRUM_PRIMARY_PORT
39 #endif
40 #endif
41 #if USE_UART0 || USE_UART1 || USE_UART2 || USE_UART3 || USE_UART4 || USE_UART5 || USE_UART6 || USE_UART7 || USE_UART8
42 #define USING_UART 1
43 #include "mcu_periph/uart.h"
44 #endif
45 #if USE_I2C0 || USE_I2C1 || USE_I2C2 || USE_I2C3
46 #define USING_I2C 1
47 #include "mcu_periph/i2c.h"
48 #endif
49 #if USE_ADC
50 #include "mcu_periph/adc.h"
51 #endif
52 #if USE_USB_SERIAL
53 #include "mcu_periph/usb_serial.h"
54 #endif
55 #ifdef USE_UDP
56 #include "mcu_periph/udp.h"
57 #endif
58 #if USE_SPI
59 #include "mcu_periph/spi.h"
60 #endif
61 #ifdef USE_DAC
62 #include "mcu_periph/dac.h"
63 #endif
64 #endif /* PERIPHERALS_AUTO_INIT */
65 
66 void WEAK board_init(void)
67 {
68  /* default board init function does nothing... */
69 }
70 
71 void WEAK board_init2(void)
72 {
73  /* default board init function does nothing... */
74 }
75 
76 void mcu_init(void)
77 {
78  /* If we have a board specific init function, call it.
79  * Otherwise it will simply call the empty weak function.
80  *
81  * For example the ARDrone2 has this implemented to prevent stray data of IMU
82  * from OEM program still running and also accessing AC sensors
83  */
84  board_init();
85 
86  mcu_arch_init();
87 
88  /* First enable the power of the MCU if needed */
89 #if defined MCU_PWR
91 #if defined BTN_ON
93 #endif
94  {
96  }
97 #endif
98 
99 #ifdef PERIPHERALS_AUTO_INIT
100  sys_time_init();
101 #ifdef USE_LED
102  led_init();
103 #endif
104  /* First enable power of RC */
105 #if defined RADIO_CONTROL_POWER
108 #endif
109  /* for now this means using spektrum */
110 #if defined RADIO_CONTROL & defined RADIO_CONTROL_SPEKTRUM_PRIMARY_PORT & defined RADIO_CONTROL_BIND_IMPL_FUNC & defined SPEKTRUM_BIND_PIN_PORT
111  RADIO_CONTROL_BIND_IMPL_FUNC();
112 #endif
113 #if USE_UART0
114  uart0_init();
115 #endif
116 #if USE_UART1
117  uart1_init();
118 #endif
119 #if USE_UART2
120  uart2_init();
121 #endif
122 #if USE_UART3
123  uart3_init();
124 #endif
125 #if USE_UART4
126  uart4_init();
127 #endif
128 #if USE_UART5
129  uart5_init();
130 #endif
131 #if USE_UART6
132  uart6_init();
133 #endif
134 #if USE_UART7
135  uart7_init();
136 #endif
137 #if USE_UART8
138  uart8_init();
139 #endif
140 #if USING_UART
141  uart_arch_init();
142 #endif
143 #ifdef USE_I2C0
144  i2c0_init();
145 #endif
146 #ifdef USE_I2C1
147  i2c1_init();
148 #endif
149 #ifdef USE_I2C2
150  i2c2_init();
151 #endif
152 #ifdef USE_I2C3
153  i2c3_init();
154 #endif
155 #if USE_ADC
156  adc_init();
157 #endif
158 #if USE_USB_SERIAL
159  VCOM_init();
160 #endif
161 
162 #if USE_SPI
163 #if SPI_MASTER
164 
165 #if USE_SPI0
166  spi0_init();
167 #endif
168 #if USE_SPI1
169  spi1_init();
170 #endif
171 #if USE_SPI2
172  spi2_init();
173 #endif
174 #if USE_SPI3
175  spi3_init();
176 #endif
177  spi_init_slaves();
178 #endif // SPI_MASTER
179 
180 #if SPI_SLAVE
181 #if USE_SPI0_SLAVE
182  spi0_slave_init();
183 #endif
184 #if USE_SPI1_SLAVE
185  spi1_slave_init();
186 #endif
187 #if USE_SPI2_SLAVE
188  spi2_slave_init();
189 #endif
190 #if USE_SPI3_SLAVE
191  spi3_slave_init();
192 #endif
193 #endif // SPI_SLAVE
194 
195 #if SPI_SLAVE_HS
197 #endif
198 #endif // USE_SPI
199 
200 #ifdef USE_DAC
201  dac_init();
202 #endif
203 
204 #if USE_UDP0 || USE_UDP1 || USE_UDP2
205  udp_arch_init();
206 #endif
207 
208 #else
209  INFO("PERIPHERALS_AUTO_INIT not enabled! Peripherals (including sys_time) need explicit initialization.")
210 #endif /* PERIPHERALS_AUTO_INIT */
211 
212  board_init2();
213 }
214 
215 
216 
217 void mcu_event(void)
218 {
219 #if USING_I2C
220  i2c_event();
221 #endif
222 
223 #if USE_USB_SERIAL
224  VCOM_event();
225 #endif
226 }
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
void mcu_init(void)
Microcontroller peripherals initialization.
Definition: mcu.c:76
#define RADIO_CONTROL_POWER
Definition: opa_ftd_1.0.h:149
#define MCU_PWR
Definition: opa_ftd_1.0.h:37
void VCOM_event(void)
Definition: usb_ser_hw.c:571
void mcu_arch_init(void)
Definition: mcu_arch.c:94
void spi_slave_hs_init(void)
#define MCU_PWR_PIN
Definition: opa_ftd_1.0.h:38
void gpio_setup_output(ioportid_t port, uint16_t gpios)
Setup one or more pins of the given GPIO port as outputs.
Definition: gpio_arch.c:33
arch independent ADC (Analog to Digital Converter) API
Architecture independent SPI (Serial Peripheral Interface) API.
#define RADIO_CONTROL_POWER_PIN
Definition: opa_ftd_1.0.h:150
#define BTN_ON
Definition: opa_ftd_1.0.h:73
void uart_arch_init(void)
Definition: uart_arch.c:54
void WEAK board_init2(void)
Optional board init function called at the end of mcu_init().
Definition: mcu.c:71
Architecture independent timing functions.
void udp_arch_init(void)
Definition: udp_arch.c:44
static void led_init(void)
Definition: led.h:36
void WEAK board_init(void)
Optional board init function called at the start of mcu_init().
Definition: mcu.c:66
#define RADIO_CONTROL_POWER_ON
Definition: opa_ftd_1.0.h:151
void sys_time_init(void)
Definition: sys_time.c:78
void spi1_init(void)
Definition: spi.c:48
Arch independent mcu ( Micro Controller Unit ) utilities.
static uint8_t gpio_get(ioportid_t port, uint16_t pin)
Get level of a gpio.
Definition: gpio_arch.h:83
void spi2_init(void)
Definition: spi.c:59
#define MCU_PWR_ON
Definition: opa_ftd_1.0.h:39
arch independent LED (Light Emitting Diodes) API
void dac_init(void)
Definition: dac_arch.c:33
void mcu_event(void)
MCU event functions.
Definition: mcu.c:217
void adc_init(void)
Adc init.
Definition: adc_arch.c:286
void i2c_event(void)
i2c_event() function
Definition: i2c_arch.c:289
void spi_init_slaves(void)
spi_init_slaves() function
Definition: spi_arch.c:510
#define BTN_ON_PIN
Definition: opa_ftd_1.0.h:74
arch independent UDP API
void VCOM_init(void)
Definition: usb_ser_hw.c:586
void spi0_init(void)
Definition: spi.c:37
arch independent USB API
Architecture independent I2C (Inter-Integrated Circuit Bus) API.