2011-04-14 14:46:39 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @addtogroup PIOS PIOS Core hardware abstraction layer
|
|
|
|
* @{
|
|
|
|
* @addtogroup PIOS_HMC5883 HMC5883 Functions
|
|
|
|
* @brief Deals with the hardware interface to the magnetometers
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file pios_board.c
|
|
|
|
* @author David "Buzz" Carlson (buzz@chebuzz.com)
|
|
|
|
* The OpenPilot Team, http://www.openpilot.org Copyright (C) 2011.
|
|
|
|
* @brief Defines board specific static initializers for hardware for the INS 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>
|
|
|
|
|
|
|
|
/* SPI2 Interface
|
2011-05-26 21:06:22 +02:00
|
|
|
* - Used for mainboard communications
|
2011-04-14 14:46:39 +02:00
|
|
|
*
|
|
|
|
* NOTE: Leave this declared as const data so that it ends up in the
|
|
|
|
* .rodata section (ie. Flash) rather than in the .bss section (RAM).
|
|
|
|
*/
|
2011-04-20 12:37:50 +02:00
|
|
|
void PIOS_SPI_op_irq_handler(void);
|
2011-08-14 08:44:44 +02:00
|
|
|
void DMA1_Stream3_IRQHandler(void) __attribute__((alias("PIOS_SPI_op_irq_handler")));
|
|
|
|
void DMA1_Stream4_IRQHandler(void) __attribute__((alias("PIOS_SPI_op_irq_handler")));
|
2011-04-20 12:37:50 +02:00
|
|
|
static const struct pios_spi_cfg pios_spi_op_cfg = {
|
2011-04-14 14:46:39 +02:00
|
|
|
.regs = SPI2,
|
2011-08-14 08:44:44 +02:00
|
|
|
.remap = GPIO_AF_SPI2,
|
2011-04-14 14:46:39 +02:00
|
|
|
.init = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.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,
|
2011-04-14 14:46:39 +02:00
|
|
|
.dma = {
|
|
|
|
.irq = {
|
2011-08-15 11:10:35 +02:00
|
|
|
// Note this is the stream ID that triggers interrupts (in this case RX)
|
|
|
|
.flags = (DMA_IT_TCIF3 | DMA_IT_TEIF3 | DMA_IT_HTIF3),
|
2011-04-14 14:46:39 +02:00
|
|
|
.init = {
|
2011-08-14 08:44:44 +02:00
|
|
|
.NVIC_IRQChannel = DMA1_Stream3_IRQn,
|
2011-08-08 02:03:32 +02:00
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
|
|
|
|
2011-04-14 14:46:39 +02:00
|
|
|
.rx = {
|
2011-08-13 11:54:19 +02:00
|
|
|
.channel = DMA1_Stream3,
|
2011-08-08 02:03:32 +02:00
|
|
|
.init = {
|
2011-08-13 11:54:19 +02:00
|
|
|
.DMA_Channel = DMA_Channel_0,
|
2011-08-08 02:03:32 +02:00
|
|
|
.DMA_PeripheralBaseAddr = (uint32_t) & (SPI2->DR),
|
2011-08-15 11:10:35 +02:00
|
|
|
.DMA_DIR = DMA_DIR_PeripheralToMemory,
|
|
|
|
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
|
|
|
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
2011-08-08 02:03:32 +02:00
|
|
|
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte,
|
2011-08-15 11:10:35 +02:00
|
|
|
.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte,
|
|
|
|
.DMA_Mode = DMA_Mode_Normal,
|
|
|
|
.DMA_Priority = DMA_Priority_Medium,
|
2011-08-08 02:03:32 +02:00
|
|
|
//TODO: Enable FIFO
|
|
|
|
.DMA_FIFOMode = DMA_FIFOMode_Disable,
|
2011-08-15 11:10:35 +02:00
|
|
|
.DMA_FIFOThreshold = DMA_FIFOThreshold_Full,
|
2011-08-08 02:03:32 +02:00
|
|
|
.DMA_MemoryBurst = DMA_MemoryBurst_Single,
|
|
|
|
.DMA_PeripheralBurst = DMA_PeripheralBurst_Single,
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.tx = {
|
2011-08-13 11:54:19 +02:00
|
|
|
.channel = DMA1_Stream4,
|
2011-08-08 02:03:32 +02:00
|
|
|
.init = {
|
2011-08-13 11:54:19 +02:00
|
|
|
.DMA_Channel = DMA_Channel_0,
|
2011-08-08 02:03:32 +02:00
|
|
|
.DMA_PeripheralBaseAddr = (uint32_t) & (SPI2->DR),
|
2011-08-15 11:10:35 +02:00
|
|
|
.DMA_DIR = DMA_DIR_MemoryToPeripheral,
|
|
|
|
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
|
|
|
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
2011-08-08 02:03:32 +02:00
|
|
|
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte,
|
2011-08-15 11:10:35 +02:00
|
|
|
.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte,
|
|
|
|
.DMA_Mode = DMA_Mode_Normal,
|
|
|
|
.DMA_Priority = DMA_Priority_Medium,
|
2011-08-08 02:03:32 +02:00
|
|
|
.DMA_FIFOMode = DMA_FIFOMode_Disable,
|
2011-08-15 11:10:35 +02:00
|
|
|
.DMA_FIFOThreshold = DMA_FIFOThreshold_Full,
|
2011-08-08 02:03:32 +02:00
|
|
|
.DMA_MemoryBurst = DMA_MemoryBurst_Single,
|
|
|
|
.DMA_PeripheralBurst = DMA_PeripheralBurst_Single,
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.sclk = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_13,
|
|
|
|
.GPIO_Speed = GPIO_Speed_100MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
2011-08-14 08:44:44 +02:00
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
2011-08-08 02:03:32 +02:00
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.miso = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_14,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.mosi = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_15,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
2011-08-16 16:31:11 +02:00
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
2011-08-08 02:03:32 +02:00
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.slave_count = 1,
|
|
|
|
.ssel = { {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_12,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_IN,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_UP
|
|
|
|
},
|
|
|
|
} },
|
2011-04-14 14:46:39 +02:00
|
|
|
};
|
|
|
|
|
2011-04-20 12:37:50 +02:00
|
|
|
uint32_t pios_spi_op_id;
|
|
|
|
void PIOS_SPI_op_irq_handler(void)
|
2011-04-14 14:46:39 +02:00
|
|
|
{
|
|
|
|
/* Call into the generic code to handle the IRQ for this specific device */
|
2011-04-20 12:37:50 +02:00
|
|
|
PIOS_SPI_IRQ_Handler(pios_spi_op_id);
|
2011-04-14 14:46:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* SPI1 Interface
|
|
|
|
* - Used for BMA180 accelerometer
|
|
|
|
*/
|
|
|
|
void PIOS_SPI_accel_irq_handler(void);
|
2011-08-14 08:44:44 +02:00
|
|
|
void DMA2_Stream0_IRQHandler(void) __attribute__((alias("PIOS_SPI_accel_irq_handler")));
|
|
|
|
void DMA2_Stream3_IRQHandler(void) __attribute__((alias("PIOS_SPI_accel_irq_handler")));
|
2011-04-14 14:46:39 +02:00
|
|
|
static const struct pios_spi_cfg pios_spi_accel_cfg = {
|
|
|
|
.regs = SPI1,
|
2011-08-14 08:44:44 +02:00
|
|
|
.remap = GPIO_AF_SPI1,
|
2011-04-14 14:46:39 +02:00
|
|
|
.init = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.SPI_Mode = SPI_Mode_Master,
|
|
|
|
.SPI_Direction = SPI_Direction_2Lines_FullDuplex,
|
|
|
|
.SPI_DataSize = SPI_DataSize_8b,
|
|
|
|
.SPI_NSS = SPI_NSS_Soft,
|
|
|
|
.SPI_FirstBit = SPI_FirstBit_MSB,
|
|
|
|
.SPI_CRCPolynomial = 7,
|
|
|
|
.SPI_CPOL = SPI_CPOL_High,
|
|
|
|
.SPI_CPHA = SPI_CPHA_2Edge,
|
|
|
|
.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_128,
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
.use_crc = false,
|
2011-04-14 14:46:39 +02:00
|
|
|
.dma = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.irq = {
|
2011-08-15 11:10:35 +02:00
|
|
|
.flags = (DMA_IT_TCIF0 | DMA_IT_TEIF0 | DMA_IT_HTIF0),
|
2011-08-08 02:03:32 +02:00
|
|
|
.init = {
|
2011-08-13 09:46:13 +02:00
|
|
|
.NVIC_IRQChannel = DMA2_Stream0_IRQn,
|
2011-08-08 02:03:32 +02:00
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
.rx = {
|
2011-08-13 09:46:13 +02:00
|
|
|
.channel = DMA2_Stream0,
|
2011-08-08 02:03:32 +02:00
|
|
|
.init = {
|
2011-08-13 09:46:13 +02:00
|
|
|
.DMA_Channel = DMA_Channel_3,
|
2011-08-08 02:03:32 +02:00
|
|
|
.DMA_PeripheralBaseAddr = (uint32_t)&(SPI1->DR),
|
|
|
|
.DMA_DIR = DMA_DIR_PeripheralToMemory,
|
|
|
|
.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_FIFOMode = DMA_FIFOMode_Disable,
|
|
|
|
/* .DMA_FIFOThreshold */
|
|
|
|
.DMA_MemoryBurst = DMA_MemoryBurst_Single,
|
|
|
|
.DMA_PeripheralBurst = DMA_PeripheralBurst_Single,
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
|
|
|
.tx = {
|
2011-08-13 11:54:19 +02:00
|
|
|
.channel = DMA2_Stream3,
|
2011-08-08 02:03:32 +02:00
|
|
|
.init = {
|
2011-08-13 09:46:13 +02:00
|
|
|
.DMA_Channel = DMA_Channel_3,
|
2011-08-08 02:03:32 +02:00
|
|
|
.DMA_PeripheralBaseAddr = (uint32_t)&(SPI1->DR),
|
|
|
|
.DMA_DIR = DMA_DIR_MemoryToPeripheral,
|
|
|
|
.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_High,
|
|
|
|
.DMA_FIFOMode = DMA_FIFOMode_Disable,
|
|
|
|
/* .DMA_FIFOThreshold */
|
|
|
|
.DMA_MemoryBurst = DMA_MemoryBurst_Single,
|
|
|
|
.DMA_PeripheralBurst = DMA_PeripheralBurst_Single,
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
|
|
|
.sclk = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.gpio = GPIOA,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_5,
|
|
|
|
.GPIO_Speed = GPIO_Speed_100MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_UP
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
|
|
|
.miso = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.gpio = GPIOA,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_6,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_UP
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
|
|
|
.mosi = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.gpio = GPIOA,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_7,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_UP
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
.slave_count = 1,
|
|
|
|
.ssel = { {
|
|
|
|
.gpio = GPIOA,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_4,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_OUT,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_UP
|
|
|
|
},
|
|
|
|
} },
|
2011-04-14 14:46:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static uint32_t pios_spi_accel_id;
|
|
|
|
void PIOS_SPI_accel_irq_handler(void)
|
|
|
|
{
|
2011-08-08 02:03:32 +02:00
|
|
|
/* Call into the generic code to handle the IRQ for this specific device */
|
2011-04-14 14:46:39 +02:00
|
|
|
PIOS_SPI_IRQ_Handler(pios_spi_accel_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PIOS_INCLUDE_SPI */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(PIOS_INCLUDE_GPS)
|
|
|
|
#include <pios_usart_priv.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GPS 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_gps_cfg = {
|
2011-04-14 14:46:39 +02:00
|
|
|
.regs = USART1,
|
2011-09-02 22:58:05 +02:00
|
|
|
.remap = GPIO_AF_USART1,
|
2011-04-14 14:46:39 +02:00
|
|
|
.init = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.USART_BaudRate = 57600,
|
|
|
|
.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,
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.irq = {
|
|
|
|
.init = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.NVIC_IRQChannel = USART1_IRQn,
|
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.rx = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.gpio = GPIOA,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_10,
|
2011-04-14 14:46:39 +02:00
|
|
|
.GPIO_Speed = GPIO_Speed_2MHz,
|
2011-08-08 02:03:32 +02:00
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_UP
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.tx = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.gpio = GPIOA,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_9,
|
2011-04-14 14:46:39 +02:00
|
|
|
.GPIO_Speed = GPIO_Speed_2MHz,
|
2011-08-08 02:03:32 +02:00
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_UP
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
};
|
|
|
|
|
2011-09-02 22:58:05 +02:00
|
|
|
#define PIOS_COM_AUX_TX_BUF_LEN 255
|
|
|
|
static uint8_t pios_com_aux_tx_buffer[PIOS_COM_AUX_TX_BUF_LEN];
|
|
|
|
#define PIOS_COM_AUX_RX_BUF_LEN 255
|
|
|
|
static uint8_t pios_com_aux_rx_buffer[PIOS_COM_AUX_RX_BUF_LEN];
|
|
|
|
|
2011-04-14 14:46:39 +02:00
|
|
|
#endif /* PIOS_INCLUDE_GPS */
|
|
|
|
|
2011-04-20 12:37:50 +02:00
|
|
|
#ifdef PIOS_INCLUDE_COM_AUX
|
2011-04-14 14:46:39 +02:00
|
|
|
/*
|
|
|
|
* 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 = {
|
2011-09-02 22:58:05 +02:00
|
|
|
.regs = UART4,
|
|
|
|
.remap = GPIO_AF_UART4,
|
2011-04-14 14:46:39 +02:00
|
|
|
.init = {
|
2011-09-03 22:10:47 +02:00
|
|
|
.USART_BaudRate = 230400,
|
2011-08-08 02:03:32 +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,
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.irq = {
|
|
|
|
.init = {
|
2011-09-02 22:58:05 +02:00
|
|
|
.NVIC_IRQChannel = UART4_IRQn,
|
2011-08-08 02:03:32 +02:00
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.rx = {
|
2011-09-02 22:58:05 +02:00
|
|
|
.gpio = GPIOC,
|
2011-08-08 02:03:32 +02:00
|
|
|
.init = {
|
2011-04-14 14:46:39 +02:00
|
|
|
.GPIO_Pin = GPIO_Pin_11,
|
|
|
|
.GPIO_Speed = GPIO_Speed_2MHz,
|
2011-08-08 02:03:32 +02:00
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_UP
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.tx = {
|
2011-09-02 22:58:05 +02:00
|
|
|
.gpio = GPIOC,
|
2011-08-08 02:03:32 +02:00
|
|
|
.init = {
|
2011-04-14 14:46:39 +02:00
|
|
|
.GPIO_Pin = GPIO_Pin_10,
|
|
|
|
.GPIO_Speed = GPIO_Speed_2MHz,
|
2011-08-08 02:03:32 +02:00
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_UP
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
};
|
|
|
|
|
2011-09-02 22:58:05 +02:00
|
|
|
#define PIOS_COM_GPS_TX_BUF_LEN 192
|
|
|
|
static uint8_t pios_com_gps_tx_buffer[PIOS_COM_GPS_TX_BUF_LEN];
|
|
|
|
#define PIOS_COM_GPS_RX_BUF_LEN 96
|
|
|
|
static uint8_t pios_com_gps_rx_buffer[PIOS_COM_GPS_RX_BUF_LEN];
|
|
|
|
|
2011-04-14 14:46:39 +02:00
|
|
|
#endif /* PIOS_COM_AUX */
|
|
|
|
|
|
|
|
|
2011-07-29 16:04:55 +02:00
|
|
|
#if defined(PIOS_INCLUDE_COM)
|
|
|
|
|
|
|
|
#include <pios_com_priv.h>
|
|
|
|
|
|
|
|
#endif /* PIOS_INCLUDE_COM */
|
2011-04-14 14:46:39 +02:00
|
|
|
|
|
|
|
#if defined(PIOS_INCLUDE_I2C)
|
|
|
|
|
|
|
|
#include <pios_i2c_priv.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* I2C Adapters
|
|
|
|
*/
|
|
|
|
void PIOS_I2C_pres_mag_adapter_ev_irq_handler(void);
|
|
|
|
void PIOS_I2C_pres_mag_adapter_er_irq_handler(void);
|
|
|
|
void I2C1_EV_IRQHandler()
|
2011-08-08 02:03:32 +02:00
|
|
|
__attribute__ ((alias("PIOS_I2C_pres_mag_adapter_ev_irq_handler")));
|
2011-04-14 14:46:39 +02:00
|
|
|
void I2C1_ER_IRQHandler()
|
2011-08-08 02:03:32 +02:00
|
|
|
__attribute__ ((alias("PIOS_I2C_pres_mag_adapter_er_irq_handler")));
|
2011-04-14 14:46:39 +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_pres_mag_adapter_cfg = {
|
2011-04-14 14:46:39 +02:00
|
|
|
.regs = I2C1,
|
2011-08-09 19:58:46 +02:00
|
|
|
.remap = GPIO_AF_I2C1,
|
2011-04-14 14:46:39 +02:00
|
|
|
.init = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.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 = 400000, /* bits/s */
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.transfer_timeout_ms = 50,
|
|
|
|
.scl = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.GPIO_Pin = GPIO_Pin_6,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_OType = GPIO_OType_OD,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL,
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.sda = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.GPIO_Pin = GPIO_Pin_7,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_OType = GPIO_OType_OD,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL,
|
2011-04-14 14:46:39 +02:00
|
|
|
},
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.event = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.flags = 0, /* FIXME: check this */
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = I2C1_EV_IRQn,
|
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGHEST,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
.error = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.flags = 0, /* FIXME: check this */
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = I2C1_ER_IRQn,
|
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGHEST,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
uint32_t pios_i2c_pres_mag_adapter_id;
|
|
|
|
void PIOS_I2C_pres_mag_adapter_ev_irq_handler(void)
|
|
|
|
{
|
|
|
|
/* Call into the generic code to handle the IRQ for this specific device */
|
|
|
|
PIOS_I2C_EV_IRQ_Handler(pios_i2c_pres_mag_adapter_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PIOS_I2C_pres_mag_adapter_er_irq_handler(void)
|
|
|
|
{
|
|
|
|
/* Call into the generic code to handle the IRQ for this specific device */
|
|
|
|
PIOS_I2C_ER_IRQ_Handler(pios_i2c_pres_mag_adapter_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PIOS_I2C_gyro_adapter_ev_irq_handler(void);
|
|
|
|
void PIOS_I2C_gyro_adapter_er_irq_handler(void);
|
|
|
|
void I2C2_EV_IRQHandler() __attribute__ ((alias ("PIOS_I2C_gyro_adapter_ev_irq_handler")));
|
|
|
|
void I2C2_ER_IRQHandler() __attribute__ ((alias ("PIOS_I2C_gyro_adapter_er_irq_handler")));
|
|
|
|
|
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_gyro_adapter_cfg = {
|
2011-08-08 02:03:32 +02:00
|
|
|
.regs = I2C2,
|
2011-08-09 19:58:46 +02:00
|
|
|
.remap = GPIO_AF_I2C2,
|
2011-08-08 02:03:32 +02:00
|
|
|
.init = {
|
|
|
|
.I2C_Mode = I2C_Mode_I2C,
|
|
|
|
.I2C_OwnAddress1 = 0,
|
|
|
|
.I2C_Ack = I2C_Ack_Enable,
|
|
|
|
.I2C_AcknowledgedAddress = I2C_AcknowledgedAddress_7bit,
|
|
|
|
.I2C_DutyCycle = I2C_DutyCycle_2,
|
2011-08-19 21:35:13 +02:00
|
|
|
.I2C_ClockSpeed = 1000000, /* bits/s */
|
2011-08-08 02:03:32 +02:00
|
|
|
},
|
|
|
|
.transfer_timeout_ms = 50,
|
|
|
|
.scl = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_10,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_OType = GPIO_OType_OD,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.sda = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_11,
|
|
|
|
.GPIO_Mode = GPIO_Mode_AF,
|
|
|
|
.GPIO_Speed = GPIO_Speed_50MHz,
|
|
|
|
.GPIO_OType = GPIO_OType_OD,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.event = {
|
|
|
|
.flags = 0, /* FIXME: check this */
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = I2C2_EV_IRQn,
|
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGHEST,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.error = {
|
|
|
|
.flags = 0, /* FIXME: check this */
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = I2C2_ER_IRQn,
|
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGHEST,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
2011-04-14 14:46:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
uint32_t pios_i2c_gyro_adapter_id;
|
|
|
|
void PIOS_I2C_gyro_adapter_ev_irq_handler(void)
|
|
|
|
{
|
|
|
|
/* Call into the generic code to handle the IRQ for this specific device */
|
|
|
|
PIOS_I2C_EV_IRQ_Handler(pios_i2c_gyro_adapter_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PIOS_I2C_gyro_adapter_er_irq_handler(void)
|
|
|
|
{
|
2011-08-08 02:03:32 +02:00
|
|
|
/* Call into the generic code to handle the IRQ for this specific device */
|
|
|
|
PIOS_I2C_ER_IRQ_Handler(pios_i2c_gyro_adapter_id);
|
2011-04-14 14:46:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PIOS_INCLUDE_I2C */
|
|
|
|
|
|
|
|
|
|
|
|
extern const struct pios_com_driver pios_usart_com_driver;
|
|
|
|
|
|
|
|
uint32_t pios_com_aux_id;
|
|
|
|
uint32_t pios_com_gps_id;
|
|
|
|
|
2011-08-12 09:23:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sensor configurations
|
|
|
|
*/
|
|
|
|
#include "pios_hmc5883.h"
|
2011-08-12 10:13:41 +02:00
|
|
|
static const struct pios_hmc5883_cfg pios_hmc5883_cfg = {
|
2011-08-12 09:23:46 +02:00
|
|
|
.drdy = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_8,
|
|
|
|
.GPIO_Speed = GPIO_Speed_100MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_IN,
|
|
|
|
.GPIO_OType = GPIO_OType_OD,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.eoc_exti = {
|
2011-08-13 08:10:33 +02:00
|
|
|
.pin_source = EXTI_PinSource8,
|
|
|
|
.port_source = EXTI_PortSourceGPIOB,
|
2011-08-12 09:23:46 +02:00
|
|
|
.init = {
|
|
|
|
.EXTI_Line = EXTI_Line8, // matches above GPIO pin
|
|
|
|
.EXTI_Mode = EXTI_Mode_Interrupt,
|
|
|
|
.EXTI_Trigger = EXTI_Trigger_Rising,
|
|
|
|
.EXTI_LineCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.eoc_irq = {
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = EXTI9_5_IRQn,
|
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_LOW,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
2011-08-21 08:29:55 +02:00
|
|
|
.M_ODR = PIOS_HMC5883_ODR_75,
|
|
|
|
.Meas_Conf = PIOS_HMC5883_MEASCONF_NORMAL,
|
|
|
|
.Gain = PIOS_HMC5883_GAIN_1_9,
|
|
|
|
.Mode = PIOS_HMC5883_MODE_CONTINUOUS,
|
|
|
|
|
2011-08-12 09:23:46 +02:00
|
|
|
};
|
|
|
|
|
2011-08-12 09:55:40 +02:00
|
|
|
#include "pios_bma180.h"
|
|
|
|
static const struct pios_bma180_cfg pios_bma180_cfg = {
|
|
|
|
.drdy = {
|
|
|
|
.gpio = GPIOC,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_4,
|
|
|
|
.GPIO_Speed = GPIO_Speed_100MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_IN,
|
|
|
|
.GPIO_OType = GPIO_OType_OD,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.eoc_exti = {
|
2011-08-13 08:10:33 +02:00
|
|
|
.pin_source = EXTI_PinSource4,
|
|
|
|
.port_source = EXTI_PortSourceGPIOC,
|
2011-08-12 09:55:40 +02:00
|
|
|
.init = {
|
|
|
|
.EXTI_Line = EXTI_Line4, // matches above GPIO pin
|
|
|
|
.EXTI_Mode = EXTI_Mode_Interrupt,
|
|
|
|
.EXTI_Trigger = EXTI_Trigger_Rising,
|
|
|
|
.EXTI_LineCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.eoc_irq = {
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = EXTI4_IRQn,
|
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_LOW,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2011-08-12 10:13:41 +02:00
|
|
|
|
2011-08-12 10:23:20 +02:00
|
|
|
#include "pios_imu3000.h"
|
|
|
|
static const struct pios_imu3000_cfg pios_imu3000_cfg = {
|
|
|
|
.drdy = {
|
|
|
|
.gpio = GPIOB,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_1,
|
|
|
|
.GPIO_Speed = GPIO_Speed_100MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_IN,
|
|
|
|
.GPIO_OType = GPIO_OType_OD,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.eoc_exti = {
|
2011-08-13 08:10:33 +02:00
|
|
|
.pin_source = EXTI_PinSource1,
|
|
|
|
.port_source = EXTI_PortSourceGPIOB,
|
2011-08-12 10:23:20 +02:00
|
|
|
.init = {
|
|
|
|
.EXTI_Line = EXTI_Line1, // matches above GPIO pin
|
|
|
|
.EXTI_Mode = EXTI_Mode_Interrupt,
|
|
|
|
.EXTI_Trigger = EXTI_Trigger_Rising,
|
|
|
|
.EXTI_LineCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.eoc_irq = {
|
|
|
|
.init = {
|
|
|
|
.NVIC_IRQChannel = EXTI1_IRQn,
|
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
2011-09-03 22:10:47 +02:00
|
|
|
.Fifo_store = PIOS_IMU3000_FIFO_TEMP_OUT | PIOS_IMU3000_FIFO_GYRO_X_OUT | PIOS_IMU3000_FIFO_GYRO_Y_OUT
|
2011-08-21 07:39:20 +02:00
|
|
|
| PIOS_IMU3000_FIFO_GYRO_Z_OUT | PIOS_IMU3000_FIFO_FOOTER,
|
|
|
|
// Clock at 8 khz, downsampled by 4 for 2khz
|
|
|
|
.Smpl_rate_div = 3,
|
|
|
|
.Interrupt_cfg = PIOS_IMU3000_INT_DATA_RDY | PIOS_IMU3000_INT_CLR_ANYRD,
|
|
|
|
.User_ctl = PIOS_IMU3000_USERCTL_FIFO_EN,
|
|
|
|
.Pwr_mgmt_clk = PIOS_IMU3000_PWRMGMT_PLL_X_CLK,
|
|
|
|
.range = PIOS_IMU3000_SCALE_500_DEG,
|
|
|
|
.filter = PIOS_IMU3000_LOWPASS_256_HZ
|
|
|
|
|
2011-08-12 10:23:20 +02:00
|
|
|
};
|
|
|
|
|
2011-08-12 10:13:41 +02:00
|
|
|
#include "pios_bmp085.h"
|
|
|
|
static const struct pios_bmp085_cfg pios_bmp085_cfg = {
|
|
|
|
.drdy = {
|
|
|
|
.gpio = GPIOC,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_2,
|
|
|
|
.GPIO_Speed = GPIO_Speed_100MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_IN,
|
|
|
|
.GPIO_OType = GPIO_OType_OD,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.eoc_exti = {
|
2011-08-13 23:10:45 +02:00
|
|
|
.pin_source = EXTI_PinSource2,
|
|
|
|
.port_source = EXTI_PortSourceGPIOC,
|
2011-08-12 10:13:41 +02:00
|
|
|
.init = {
|
|
|
|
.EXTI_Line = EXTI_Line2, // matches above GPIO pin
|
|
|
|
.EXTI_Mode = EXTI_Mode_Interrupt,
|
|
|
|
.EXTI_Trigger = EXTI_Trigger_Rising,
|
|
|
|
.EXTI_LineCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.eoc_irq = {
|
|
|
|
.init = {
|
2011-08-13 23:10:45 +02:00
|
|
|
.NVIC_IRQChannel = EXTI2_IRQn,
|
2011-08-12 10:13:41 +02:00
|
|
|
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_LOW,
|
|
|
|
.NVIC_IRQChannelSubPriority = 0,
|
|
|
|
.NVIC_IRQChannelCmd = ENABLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.xclr = {
|
|
|
|
.gpio = GPIOC,
|
|
|
|
.init = {
|
|
|
|
.GPIO_Pin = GPIO_Pin_1,
|
|
|
|
.GPIO_Speed = GPIO_Speed_100MHz,
|
|
|
|
.GPIO_Mode = GPIO_Mode_OUT,
|
|
|
|
.GPIO_OType = GPIO_OType_PP,
|
|
|
|
.GPIO_PuPd = GPIO_PuPd_NOPULL,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
.oversampling = 3,
|
|
|
|
};
|
2011-08-12 09:55:40 +02:00
|
|
|
|
2011-04-14 14:46:39 +02:00
|
|
|
/**
|
|
|
|
* 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();
|
2011-08-08 02:03:32 +02:00
|
|
|
|
2011-04-14 14:46:39 +02:00
|
|
|
/* Delay system */
|
|
|
|
PIOS_DELAY_Init();
|
2011-08-08 02:03:32 +02:00
|
|
|
|
2011-04-14 14:46:39 +02:00
|
|
|
/* IAP System Setup */
|
|
|
|
PIOS_IAP_Init();
|
2011-08-08 02:03:32 +02:00
|
|
|
|
2011-04-14 14:46:39 +02:00
|
|
|
#if defined(PIOS_INCLUDE_COM)
|
|
|
|
#if defined(PIOS_INCLUDE_GPS)
|
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
|
|
|
uint32_t pios_usart_gps_id;
|
2011-04-14 14:46:39 +02:00
|
|
|
if (PIOS_USART_Init(&pios_usart_gps_id, &pios_usart_gps_cfg)) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
2011-07-29 16:04:55 +02:00
|
|
|
if (PIOS_COM_Init(&pios_com_gps_id, &pios_usart_com_driver, pios_usart_gps_id,
|
2011-08-08 02:03:32 +02:00
|
|
|
pios_com_gps_rx_buffer, sizeof(pios_com_gps_rx_buffer),
|
2011-09-02 22:58:05 +02:00
|
|
|
pios_com_gps_tx_buffer, sizeof(pios_com_gps_tx_buffer))) {
|
2011-04-14 14:46:39 +02:00
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
|
|
|
#endif /* PIOS_INCLUDE_GPS */
|
2011-08-08 02:03:32 +02:00
|
|
|
|
2011-04-20 12:37:50 +02:00
|
|
|
#if defined(PIOS_INCLUDE_COM_AUX)
|
2011-09-02 22:58:05 +02:00
|
|
|
uint32_t pios_usart_aux_id;
|
|
|
|
|
2011-04-20 12:37:50 +02:00
|
|
|
if (PIOS_USART_Init(&pios_usart_aux_id, &pios_usart_aux_cfg)) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
2011-09-02 22:58:05 +02:00
|
|
|
if (PIOS_COM_Init(&pios_com_aux_id, &pios_usart_com_driver, pios_usart_aux_id,
|
|
|
|
pios_com_aux_rx_buffer, sizeof(pios_com_aux_rx_buffer),
|
|
|
|
pios_com_aux_tx_buffer, sizeof(pios_com_aux_tx_buffer))) {
|
2011-04-20 12:37:50 +02:00
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
|
|
|
#endif /* PIOS_INCLUDE_COM_AUX */
|
2011-04-14 14:46:39 +02:00
|
|
|
#endif /* PIOS_INCLUDE_COM */
|
2011-08-08 02:03:32 +02:00
|
|
|
|
2011-04-14 14:46:39 +02:00
|
|
|
if (PIOS_I2C_Init(&pios_i2c_pres_mag_adapter_id, &pios_i2c_pres_mag_adapter_cfg)) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
2011-08-12 09:55:40 +02:00
|
|
|
|
2011-04-14 14:46:39 +02:00
|
|
|
if (PIOS_I2C_Init(&pios_i2c_gyro_adapter_id, &pios_i2c_gyro_adapter_cfg)) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
|
|
|
/* Set up the SPI interface to the accelerometer*/
|
|
|
|
if (PIOS_SPI_Init(&pios_spi_accel_id, &pios_spi_accel_cfg)) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
2011-08-14 08:44:44 +02:00
|
|
|
PIOS_BMA180_Attach(pios_spi_accel_id);
|
|
|
|
PIOS_BMA180_Init(&pios_bma180_cfg);
|
2011-08-13 14:13:43 +02:00
|
|
|
PIOS_IMU3000_Init(&pios_imu3000_cfg);
|
2011-08-13 23:10:45 +02:00
|
|
|
PIOS_HMC5883_Init(&pios_hmc5883_cfg);
|
|
|
|
PIOS_BMP085_Init(&pios_bmp085_cfg);
|
2011-08-08 02:03:32 +02:00
|
|
|
|
|
|
|
|
2011-04-20 12:37:50 +02:00
|
|
|
/* Set up the SPI interface to the OP board */
|
2011-08-08 02:03:32 +02:00
|
|
|
#include "ahrs_spi_comm.h"
|
2011-04-20 12:37:50 +02:00
|
|
|
AhrsInitComms();
|
|
|
|
if (PIOS_SPI_Init(&pios_spi_op_id, &pios_spi_op_cfg)) {
|
|
|
|
PIOS_DEBUG_Assert(0);
|
|
|
|
}
|
2011-08-08 02:03:32 +02:00
|
|
|
|
2011-04-20 12:37:50 +02:00
|
|
|
AhrsConnect(pios_spi_op_id);
|
2011-04-14 14:46:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|