2010-06-13 06:23:44 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file pios_board.c
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @brief Defines board specific static initializers for hardware for the AHRS board.
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <pios.h>
|
|
|
|
|
|
|
|
#if defined(PIOS_INCLUDE_SPI)
|
|
|
|
|
|
|
|
#include <pios_spi_priv.h>
|
|
|
|
|
|
|
|
/* OP Interface
|
|
|
|
*
|
2010-07-04 04:21:13 +02:00
|
|
|
* NOTE: Leave this declared as const data so that it ends up in the
|
2010-06-13 06:23:44 +02:00
|
|
|
* .rodata section (ie. Flash) rather than in the .bss section (RAM).
|
|
|
|
*/
|
|
|
|
void PIOS_SPI_op_irq_handler(void);
|
2011-01-09 21:49:46 +01:00
|
|
|
void DMA1_Channel5_IRQHandler() __attribute__ ((alias("PIOS_SPI_op_irq_handler")));
|
|
|
|
void DMA1_Channel4_IRQHandler() __attribute__ ((alias("PIOS_SPI_op_irq_handler")));
|
2010-06-13 06:23:44 +02:00
|
|
|
static const struct pios_spi_cfg pios_spi_op_cfg = {
|
2010-09-21 21:29:39 +02:00
|
|
|
.regs = SPI2,
|
|
|
|
.init = {
|
|
|
|
.SPI_Mode = SPI_Mode_Slave,
|
|
|
|
.SPI_Direction = SPI_Direction_2Lines_FullDuplex,
|
|
|
|
.SPI_DataSize = SPI_DataSize_8b,
|
|
|
|
.SPI_NSS = SPI_NSS_Hard,
|
|
|
|
.SPI_FirstBit = SPI_FirstBit_MSB,
|
|
|
|
.SPI_CRCPolynomial = 7,
|
|
|
|
.SPI_CPOL = SPI_CPOL_High,
|
|
|
|
.SPI_CPHA = SPI_CPHA_2Edge,
|
|
|
|
},
|
|
|
|
.use_crc = TRUE,
|
|
|
|
.dma = {
|
|
|
|
.ahb_clk = RCC_AHBPeriph_DMA1,
|
2010-06-13 06:23:44 +02:00
|
|
|
|
2010-09-21 21:29:39 +02:00
|
|
|
.irq = {
|
|
|
|
.flags =
|
|
|
|
(DMA1_FLAG_TC4 | DMA1_FLAG_TE4 | DMA1_FLAG_HT4 |
|
|
|
|
DMA1_FLAG_GL4),
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = DMA1_Channel4_IRQn,
|
2011-01-09 21:49:46 +01:00
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
2010-09-21 21:29:39 +02:00
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
.rx = {
|
|
|
|
.channel = DMA1_Channel4,
|
|
|
|
.init = {
|
|
|
|
.DMA_PeripheralBaseAddr =
|
|
|
|
(uint32_t) & (SPI2->DR),
|
|
|
|
.DMA_DIR = DMA_DIR_PeripheralSRC,
|
|
|
|
.DMA_PeripheralInc =
|
|
|
|
DMA_PeripheralInc_Disable,
|
|
|
|
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
|
|
|
.DMA_PeripheralDataSize =
|
|
|
|
DMA_PeripheralDataSize_Byte,
|
|
|
|
.DMA_MemoryDataSize =
|
|
|
|
DMA_MemoryDataSize_Byte,
|
|
|
|
.DMA_Mode = DMA_Mode_Normal,
|
|
|
|
.DMA_Priority = DMA_Priority_Medium,
|
|
|
|
.DMA_M2M = DMA_M2M_Disable,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.tx = {
|
|
|
|
.channel = DMA1_Channel5,
|
|
|
|
.init = {
|
|
|
|
.DMA_PeripheralBaseAddr =
|
|
|
|
(uint32_t) & (SPI2->DR),
|
|
|
|
.DMA_DIR = DMA_DIR_PeripheralDST,
|
|
|
|
.DMA_PeripheralInc =
|
|
|
|
DMA_PeripheralInc_Disable,
|
|
|
|
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
|
|
|
.DMA_PeripheralDataSize =
|
|
|
|
DMA_PeripheralDataSize_Byte,
|
|
|
|
.DMA_MemoryDataSize =
|
|
|
|
DMA_MemoryDataSize_Byte,
|
|
|
|
.DMA_Mode = DMA_Mode_Normal,
|
|
|
|
.DMA_Priority = DMA_Priority_Medium,
|
|
|
|
.DMA_M2M = DMA_M2M_Disable,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.ssel = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_12,
|
2011-01-09 21:49:46 +01:00
|
|
|
.GPIO_Speed = GPIO_Speed_10MHz,
|
2010-09-21 21:29:39 +02:00
|
|
|
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.sclk = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_13,
|
2011-01-09 21:49:46 +01:00
|
|
|
.GPIO_Speed = GPIO_Speed_10MHz,
|
2010-09-21 21:29:39 +02:00
|
|
|
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.miso = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_14,
|
2011-01-09 21:49:46 +01:00
|
|
|
.GPIO_Speed = GPIO_Speed_10MHz,
|
2010-09-21 21:29:39 +02:00
|
|
|
.GPIO_Mode = GPIO_Mode_AF_PP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.mosi = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_15,
|
2011-01-09 21:49:46 +01:00
|
|
|
.GPIO_Speed = GPIO_Speed_10MHz,
|
2010-09-21 21:29:39 +02:00
|
|
|
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
|
|
|
},
|
|
|
|
},
|
2010-06-13 06:23:44 +02:00
|
|
|
};
|
|
|
|
|
2011-02-12 23:19:50 +01:00
|
|
|
uint32_t pios_spi_op_id;
|
2010-06-13 06:23:44 +02:00
|
|
|
void PIOS_SPI_op_irq_handler(void)
|
|
|
|
{
|
2010-09-21 21:29:39 +02:00
|
|
|
/* Call into the generic code to handle the IRQ for this specific device */
|
2011-02-12 23:19:50 +01:00
|
|
|
PIOS_SPI_IRQ_Handler(pios_spi_op_id);
|
2010-06-13 06:23:44 +02:00
|
|
|
}
|
|
|
|
|
2010-06-13 06:24:26 +02:00
|
|
|
#endif /* PIOS_INCLUDE_SPI */
|
|
|
|
|
2011-01-16 03:45:39 +01:00
|
|
|
/*
|
|
|
|
* ADC system
|
|
|
|
*/
|
|
|
|
#include "pios_adc_priv.h"
|
|
|
|
extern void PIOS_ADC_handler(void);
|
|
|
|
void DMA1_Channel1_IRQHandler() __attribute__ ((alias("PIOS_ADC_handler")));
|
|
|
|
// Remap the ADC DMA handler to this one
|
bootcfg: use UAVobj to control boot-time HW config
This should mark an end to the compile-time selection of HW
configurations.
Minor changes in board initialization for all platforms:
- Most config structs are marked static to prevent badly written
drivers from directly referring to config data.
- Adapt to changes in .irq fields in config data.
- Adapt to changes in USART IRQ handling.
Major changes in board initialization for CC:
- Use HwSettings UAVObj to decide which drivers to attach to
the "main" port and the flexi port, and select the appropriate
device configuration data.
- HwSettings allows choosing between Disabled, Telemetry, SBUS,
Spektrum,GPS, and I2C for each of the two ports.
- Use ManualControlSettings.InputMode to init/configure the
appropriate receiver module, and register its available rx channels
with the PIOS_RCVR layer. Can choose between PWM, Spektrum and PPM
at board init time. PPM driver is broken, and SBUS will work once
it is added to this UAVObj as an option.
- CC build now includes code for SBUS, Spektrum and PWM receivers in
every firmware image.
PIOS_USART driver:
- Now handles its own low-level IRQs internally
- If NULL upper-level IRQ handler is bound in at board init time
then rx/tx is satisfied by internal PIOS_USART buffered IO routines
which are (typically) attached to the COM layer.
- If an alternate upper-level IRQ handler is bound in at board init
then that handler is called and expected to clear down the USART
IRQ sources. This is used by Spektrum and SBUS drivers.
PIOS_SBUS and PIOS_SPEKTRUM drivers:
- Improved data/API hiding
- No longer assume they know where their config data is stored which
allows for boot-time alternate configurations for the driver.
- Now registers an upper-level IRQ handlerwith the USART layer to
decouple the driver from which USART it is actually attached to.
2011-07-06 02:21:00 +02:00
|
|
|
static const struct pios_adc_cfg pios_adc_cfg = {
|
2011-01-16 03:45:39 +01:00
|
|
|
.dma = {
|
|
|
|
.ahb_clk = RCC_AHBPeriph_DMA1,
|
|
|
|
.irq = {
|
|
|
|
.flags = (DMA1_FLAG_TC1 | DMA1_FLAG_TE1 | DMA1_FLAG_HT1 | DMA1_FLAG_GL1),
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = DMA1_Channel1_IRQn,
|
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.rx = {
|
|
|
|
.channel = DMA1_Channel1,
|
|
|
|
.init = {
|
|
|
|
.DMA_PeripheralBaseAddr = (uint32_t) & ADC1->DR,
|
|
|
|
.DMA_DIR = DMA_DIR_PeripheralSRC,
|
|
|
|
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
|
|
|
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
|
|
|
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Word,
|
|
|
|
.DMA_MemoryDataSize = DMA_MemoryDataSize_Word,
|
|
|
|
.DMA_Mode = DMA_Mode_Circular,
|
|
|
|
.DMA_Priority = DMA_Priority_High,
|
|
|
|
.DMA_M2M = DMA_M2M_Disable,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
.half_flag = DMA1_IT_HT1,
|
|
|
|
.full_flag = DMA1_IT_TC1,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pios_adc_dev pios_adc_devs[] = {
|
|
|
|
{
|
|
|
|
.cfg = &pios_adc_cfg,
|
|
|
|
.callback_function = NULL,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
uint8_t pios_adc_num_devices = NELEMENTS(pios_adc_devs);
|
|
|
|
|
|
|
|
void PIOS_ADC_handler() {
|
|
|
|
PIOS_ADC_DMA_Handler();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-13 06:24:26 +02:00
|
|
|
#if defined(PIOS_INCLUDE_USART)
|
|
|
|
#include <pios_usart_priv.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* AUX USART
|
|
|
|
*/
|
bootcfg: use UAVobj to control boot-time HW config
This should mark an end to the compile-time selection of HW
configurations.
Minor changes in board initialization for all platforms:
- Most config structs are marked static to prevent badly written
drivers from directly referring to config data.
- Adapt to changes in .irq fields in config data.
- Adapt to changes in USART IRQ handling.
Major changes in board initialization for CC:
- Use HwSettings UAVObj to decide which drivers to attach to
the "main" port and the flexi port, and select the appropriate
device configuration data.
- HwSettings allows choosing between Disabled, Telemetry, SBUS,
Spektrum,GPS, and I2C for each of the two ports.
- Use ManualControlSettings.InputMode to init/configure the
appropriate receiver module, and register its available rx channels
with the PIOS_RCVR layer. Can choose between PWM, Spektrum and PPM
at board init time. PPM driver is broken, and SBUS will work once
it is added to this UAVObj as an option.
- CC build now includes code for SBUS, Spektrum and PWM receivers in
every firmware image.
PIOS_USART driver:
- Now handles its own low-level IRQs internally
- If NULL upper-level IRQ handler is bound in at board init time
then rx/tx is satisfied by internal PIOS_USART buffered IO routines
which are (typically) attached to the COM layer.
- If an alternate upper-level IRQ handler is bound in at board init
then that handler is called and expected to clear down the USART
IRQ sources. This is used by Spektrum and SBUS drivers.
PIOS_SBUS and PIOS_SPEKTRUM drivers:
- Improved data/API hiding
- No longer assume they know where their config data is stored which
allows for boot-time alternate configurations for the driver.
- Now registers an upper-level IRQ handlerwith the USART layer to
decouple the driver from which USART it is actually attached to.
2011-07-06 02:21:00 +02:00
|
|
|
static const struct pios_usart_cfg pios_usart_aux_cfg = {
|
2010-09-21 21:29:39 +02:00
|
|
|
.regs = USART3,
|
|
|
|
.init = {
|
2011-07-07 05:03:54 +02:00
|
|
|
.USART_BaudRate = 230400,
|
2010-09-21 21:29:39 +02:00
|
|
|
.USART_WordLength = USART_WordLength_8b,
|
|
|
|
.USART_Parity = USART_Parity_No,
|
|
|
|
.USART_StopBits = USART_StopBits_1,
|
|
|
|
.USART_HardwareFlowControl =
|
|
|
|
USART_HardwareFlowControl_None,
|
|
|
|
.USART_Mode = USART_Mode_Rx | USART_Mode_Tx,
|
|
|
|
},
|
|
|
|
.irq = {
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = USART3_IRQn,
|
2011-01-09 21:49:46 +01:00
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
2010-09-21 21:29:39 +02:00
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.rx = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_11,
|
|
|
|
.GPIO_Speed = GPIO_Speed_2MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_IPU,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.tx = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_10,
|
|
|
|
.GPIO_Speed = GPIO_Speed_2MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF_PP,
|
|
|
|
},
|
|
|
|
},
|
2010-06-13 06:24:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* PIOS_INCLUDE_USART */
|
|
|
|
|
|
|
|
#if defined(PIOS_INCLUDE_COM)
|
|
|
|
|
2011-02-12 23:19:43 +01:00
|
|
|
#include <pios_com_priv.h>
|
2010-06-13 06:24:26 +02:00
|
|
|
|
2011-07-29 16:04:55 +02:00
|
|
|
#define PIOS_COM_AUX_TX_BUF_LEN 192
|
|
|
|
static uint8_t pios_com_aux_tx_buffer[PIOS_COM_AUX_TX_BUF_LEN];
|
|
|
|
|
2010-06-13 06:24:26 +02:00
|
|
|
#endif /* PIOS_INCLUDE_COM */
|
|
|
|
|
2010-08-08 06:15:08 +02:00
|
|
|
#if defined(PIOS_INCLUDE_I2C)
|
2011-02-12 23:19:54 +01:00
|
|
|
|
2010-08-08 06:15:08 +02:00
|
|
|
#include <pios_i2c_priv.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* I2C Adapters
|
|
|
|
*/
|
|
|
|
|
|
|
|
void PIOS_I2C_main_adapter_ev_irq_handler(void);
|
|
|
|
void PIOS_I2C_main_adapter_er_irq_handler(void);
|
2010-09-21 21:29:39 +02:00
|
|
|
void I2C1_EV_IRQHandler()
|
|
|
|
__attribute__ ((alias("PIOS_I2C_main_adapter_ev_irq_handler")));
|
|
|
|
void I2C1_ER_IRQHandler()
|
|
|
|
__attribute__ ((alias("PIOS_I2C_main_adapter_er_irq_handler")));
|
2010-08-08 06:15:08 +02:00
|
|
|
|
bootcfg: use UAVobj to control boot-time HW config
This should mark an end to the compile-time selection of HW
configurations.
Minor changes in board initialization for all platforms:
- Most config structs are marked static to prevent badly written
drivers from directly referring to config data.
- Adapt to changes in .irq fields in config data.
- Adapt to changes in USART IRQ handling.
Major changes in board initialization for CC:
- Use HwSettings UAVObj to decide which drivers to attach to
the "main" port and the flexi port, and select the appropriate
device configuration data.
- HwSettings allows choosing between Disabled, Telemetry, SBUS,
Spektrum,GPS, and I2C for each of the two ports.
- Use ManualControlSettings.InputMode to init/configure the
appropriate receiver module, and register its available rx channels
with the PIOS_RCVR layer. Can choose between PWM, Spektrum and PPM
at board init time. PPM driver is broken, and SBUS will work once
it is added to this UAVObj as an option.
- CC build now includes code for SBUS, Spektrum and PWM receivers in
every firmware image.
PIOS_USART driver:
- Now handles its own low-level IRQs internally
- If NULL upper-level IRQ handler is bound in at board init time
then rx/tx is satisfied by internal PIOS_USART buffered IO routines
which are (typically) attached to the COM layer.
- If an alternate upper-level IRQ handler is bound in at board init
then that handler is called and expected to clear down the USART
IRQ sources. This is used by Spektrum and SBUS drivers.
PIOS_SBUS and PIOS_SPEKTRUM drivers:
- Improved data/API hiding
- No longer assume they know where their config data is stored which
allows for boot-time alternate configurations for the driver.
- Now registers an upper-level IRQ handlerwith the USART layer to
decouple the driver from which USART it is actually attached to.
2011-07-06 02:21:00 +02:00
|
|
|
static const struct pios_i2c_adapter_cfg pios_i2c_main_adapter_cfg = {
|
2010-09-21 21:29:39 +02:00
|
|
|
.regs = I2C1,
|
|
|
|
.init = {
|
|
|
|
.I2C_Mode = I2C_Mode_I2C,
|
|
|
|
.I2C_OwnAddress1 = 0,
|
|
|
|
.I2C_Ack = I2C_Ack_Enable,
|
|
|
|
.I2C_AcknowledgedAddress = I2C_AcknowledgedAddress_7bit,
|
|
|
|
.I2C_DutyCycle = I2C_DutyCycle_2,
|
|
|
|
.I2C_ClockSpeed = 200000, /* bits/s */
|
|
|
|
},
|
|
|
|
.transfer_timeout_ms = 50,
|
|
|
|
.scl = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_6,
|
|
|
|
.GPIO_Speed = GPIO_Speed_10MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF_OD,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.sda = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_7,
|
|
|
|
.GPIO_Speed = GPIO_Speed_10MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF_OD,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.event = {
|
|
|
|
.flags = 0, /* FIXME: check this */
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = I2C1_EV_IRQn,
|
2011-01-09 21:49:26 +01:00
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGHEST,
|
2010-09-21 21:29:39 +02:00
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.error = {
|
|
|
|
.flags = 0, /* FIXME: check this */
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = I2C1_ER_IRQn,
|
2011-01-09 21:49:26 +01:00
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGHEST,
|
2010-09-21 21:29:39 +02:00
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
2010-08-08 06:15:08 +02:00
|
|
|
};
|
|
|
|
|
2011-02-12 23:19:54 +01:00
|
|
|
uint32_t pios_i2c_main_adapter_id;
|
2010-08-08 06:15:08 +02:00
|
|
|
void PIOS_I2C_main_adapter_ev_irq_handler(void)
|
|
|
|
{
|
2010-09-21 21:29:39 +02:00
|
|
|
/* Call into the generic code to handle the IRQ for this specific device */
|
2011-02-12 23:19:54 +01:00
|
|
|
PIOS_I2C_EV_IRQ_Handler(pios_i2c_main_adapter_id);
|
2010-08-08 06:15:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void PIOS_I2C_main_adapter_er_irq_handler(void)
|
|
|
|
{
|
2010-09-21 21:29:39 +02:00
|
|
|
/* Call into the generic code to handle the IRQ for this specific device */
|
2011-02-12 23:19:54 +01:00
|
|
|
PIOS_I2C_ER_IRQ_Handler(pios_i2c_main_adapter_id);
|
2010-08-08 06:15:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PIOS_INCLUDE_I2C */
|
2011-02-06 02:03:06 +01:00
|
|
|
|
|
|
|
#if defined(PIOS_ENABLE_DEBUG_PINS)
|
|
|
|
|
|
|
|
static const struct stm32_gpio pios_debug_pins[] = {
|
|
|
|
{
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_11,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_10,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_Out_PP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2011-02-12 23:19:43 +01:00
|
|
|
#endif /* PIOS_ENABLE_DEBUG_PINS */
|
|
|
|
|
|
|
|
extern const struct pios_com_driver pios_usart_com_driver;
|
|
|
|
|
|
|
|
uint32_t pios_com_aux_id;
|
|
|
|
uint8_t adc_fifo_buf[sizeof(float) * 6 * 4] __attribute__ ((aligned(4))); // align to 32-bit to try and provide speed improvement
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PIOS_Board_Init()
|
|
|
|
* initializes all the core subsystems on this specific hardware
|
|
|
|
* called from System/openpilot.c
|
|
|
|
*/
|
|
|
|
void PIOS_Board_Init(void) {
|
|
|
|
/* Brings up System using CMSIS functions, enables the LEDs. */
|
|
|
|
PIOS_SYS_Init();
|
|
|
|
|
|
|
|
PIOS_LED_On(LED1);
|
|
|
|
|
|
|
|
/* Delay system */
|
|
|
|
PIOS_DELAY_Init();
|
|
|
|
|
|
|
|
/* Communication system */
|
|
|
|
#if !defined(PIOS_ENABLE_DEBUG_PINS)
|
|
|
|
#if defined(PIOS_INCLUDE_COM)
|
2011-07-29 16:04:55 +02:00
|
|
|
{
|
|
|
|
uint32_t pios_usart_aux_id;
|
|
|
|
if (PIOS_USART_Init(&pios_usart_aux_id, &pios_usart_aux_cfg)) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
|
|
|
if (PIOS_COM_Init(&pios_com_aux_id, &pios_usart_com_driver, pios_usart_aux_id,
|
|
|
|
NULL, 0,
|
|
|
|
pios_com_aux_tx_buffer, sizeof(pios_com_aux_tx_buffer))) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
2011-02-12 23:19:43 +01:00
|
|
|
}
|
|
|
|
#endif /* PIOS_INCLUDE_COM */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* IAP System Setup */
|
|
|
|
PIOS_IAP_Init();
|
|
|
|
|
|
|
|
/* ADC system */
|
|
|
|
PIOS_ADC_Init();
|
|
|
|
extern uint8_t adc_oversampling;
|
|
|
|
PIOS_ADC_Config(adc_oversampling);
|
|
|
|
extern void adc_callback(float *);
|
|
|
|
PIOS_ADC_SetCallback(adc_callback);
|
|
|
|
|
|
|
|
/* ADC buffer */
|
|
|
|
extern t_fifo_buffer adc_fifo_buffer;
|
|
|
|
fifoBuf_init(&adc_fifo_buffer, adc_fifo_buf, sizeof(adc_fifo_buf));
|
|
|
|
|
|
|
|
/* Setup the Accelerometer FS (Full-Scale) GPIO */
|
|
|
|
PIOS_GPIO_Enable(0);
|
|
|
|
SET_ACCEL_6G;
|
|
|
|
|
|
|
|
#if defined(PIOS_INCLUDE_HMC5843) && defined(PIOS_INCLUDE_I2C)
|
|
|
|
/* Magnetic sensor system */
|
2011-02-12 23:19:54 +01:00
|
|
|
if (PIOS_I2C_Init(&pios_i2c_main_adapter_id, &pios_i2c_main_adapter_cfg)) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
2011-02-12 23:19:43 +01:00
|
|
|
PIOS_HMC5843_Init();
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 23:19:50 +01:00
|
|
|
#if defined(PIOS_INCLUDE_SPI)
|
|
|
|
#include "ahrs_spi_comm.h"
|
|
|
|
AhrsInitComms();
|
|
|
|
|
|
|
|
/* Set up the SPI interface to the OP board */
|
|
|
|
if (PIOS_SPI_Init(&pios_spi_op_id, &pios_spi_op_cfg)) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
AhrsConnect(pios_spi_op_id);
|
|
|
|
#endif
|
2011-02-12 23:19:43 +01:00
|
|
|
}
|
2011-02-12 23:19:50 +01:00
|
|
|
|