2012-03-22 18:50:33 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @addtogroup OpenPilotSystem OpenPilot System
|
|
|
|
* @{
|
|
|
|
* @addtogroup OpenPilotCore OpenPilot Core
|
|
|
|
* @{
|
|
|
|
* @file pios_board.h
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
|
|
|
|
* @brief Defines board hardware for the OpenPilot Version 1.1 hardware.
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2013-04-14 01:34:43 +02:00
|
|
|
#ifndef PIOS_BOARD_H
|
|
|
|
#define PIOS_BOARD_H
|
2012-03-24 19:24:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* glue macros for file IO
|
|
|
|
**/
|
2013-05-19 16:37:30 +02:00
|
|
|
#define FILEINFO FILE *
|
|
|
|
#define PIOS_FOPEN_READ(filename, file) (file = fopen((char *)filename, "r")) == NULL
|
|
|
|
#define PIOS_FOPEN_WRITE(filename, file) (file = fopen((char *)filename, "w")) == NULL
|
|
|
|
#define PIOS_FREAD(file, bufferadr, length, resultadr) (*resultadr = fread((uint8_t *)bufferadr, 1, length, *file)) != length
|
|
|
|
#define PIOS_FWRITE(file, bufferadr, length, resultadr) *resultadr = fwrite((uint8_t *)bufferadr, 1, length, *file)
|
|
|
|
#define PIOS_FCLOSE(file) fclose(file)
|
|
|
|
#define PIOS_FUNLINK(file) unlink((char *)filename)
|
2012-03-24 19:24:13 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// Timers and Channels Used
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
/*
|
2013-05-19 16:37:30 +02:00
|
|
|
Timer | Channel 1 | Channel 2 | Channel 3 | Channel 4
|
|
|
|
------+-----------+-----------+-----------+----------
|
|
|
|
TIM1 | | | |
|
|
|
|
TIM2 | --------------- PIOS_DELAY -----------------
|
|
|
|
TIM3 | | | |
|
|
|
|
TIM4 | | | |
|
|
|
|
TIM5 | | | |
|
|
|
|
TIM6 | | | |
|
|
|
|
TIM7 | | | |
|
|
|
|
TIM8 | | | |
|
|
|
|
------+-----------+-----------+-----------+----------
|
|
|
|
*/
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// DMA Channels Used
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
/* Channel 1 - */
|
|
|
|
/* Channel 2 - SPI1 RX */
|
|
|
|
/* Channel 3 - SPI1 TX */
|
|
|
|
/* Channel 4 - SPI2 RX */
|
|
|
|
/* Channel 5 - SPI2 TX */
|
|
|
|
/* Channel 6 - */
|
|
|
|
/* Channel 7 - */
|
|
|
|
/* Channel 8 - */
|
|
|
|
/* Channel 9 - */
|
|
|
|
/* Channel 10 - */
|
|
|
|
/* Channel 11 - */
|
|
|
|
/* Channel 12 - */
|
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// BOOTLOADER_SETTINGS
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
|
|
|
// #define BOARD_READABLE true
|
|
|
|
// #define BOARD_WRITABLE true
|
|
|
|
// #define MAX_DEL_RETRYS 3
|
2012-03-22 18:50:33 +01:00
|
|
|
|
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// PIOS_LED
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
|
|
|
#define PIOS_LED_NUM 3
|
|
|
|
#define PIOS_LED_HEARTBEAT 0
|
|
|
|
#define PIOS_LED_ALARM 1
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// PIOS_SPI
|
|
|
|
// See also pios_board.c
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
|
|
|
// #define PIOS_SPI_MAX_DEVS 3
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// PIOS_WDG
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
|
|
|
#define PIOS_WATCHDOG_TIMEOUT 250
|
|
|
|
// #define PIOS_WDG_REGISTER RTC_BKP_DR4
|
|
|
|
#define PIOS_WDG_ACTUATOR 0x0001
|
|
|
|
#define PIOS_WDG_STABILIZATION 0x0002
|
|
|
|
#define PIOS_WDG_ATTITUDE 0x0004
|
|
|
|
#define PIOS_WDG_MANUAL 0x0008
|
|
|
|
#define PIOS_WDG_SENSORS 0x0010
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// PIOS_I2C
|
|
|
|
// See also pios_board.c
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
|
|
|
// #define PIOS_I2C_MAX_DEVS 3
|
|
|
|
// extern uint32_t pios_i2c_mag_adapter_id;
|
|
|
|
// #define PIOS_I2C_MAIN_ADAPTER (pios_i2c_mag_adapter_id)
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// PIOS_USART
|
|
|
|
//
|
|
|
|
// See also pios_board.c
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// #define PIOS_USART_MAX_DEVS 5
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// PIOS_COM
|
|
|
|
//
|
|
|
|
// See also pios_board.c
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
#define PIOS_COM_MAX_DEVS 25
|
2012-03-22 18:50:33 +01:00
|
|
|
extern uint32_t pios_com_telem_rf_id;
|
|
|
|
extern uint32_t pios_com_gps_id;
|
|
|
|
extern uint32_t pios_com_aux_id;
|
|
|
|
extern uint32_t pios_com_telem_usb_id;
|
|
|
|
extern uint32_t pios_com_bridge_id;
|
|
|
|
extern uint32_t pios_com_vcp_id;
|
2013-05-19 16:37:30 +02:00
|
|
|
#define PIOS_COM_AUX (pios_com_aux_id)
|
|
|
|
#define PIOS_COM_GPS (pios_com_gps_id)
|
|
|
|
#define PIOS_COM_TELEM_USB (pios_com_telem_usb_id)
|
|
|
|
#define PIOS_COM_TELEM_RF (pios_com_telem_rf_id)
|
|
|
|
#define PIOS_COM_BRIDGE (pios_com_bridge_id)
|
|
|
|
#define PIOS_COM_VCP (pios_com_vcp_id)
|
|
|
|
#define PIOS_COM_DEBUG PIOS_COM_AUX
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
|
|
|
// TELEMETRY
|
|
|
|
// ------------------------
|
|
|
|
#define TELEM_QUEUE_SIZE 20
|
|
|
|
#define PIOS_TELEM_STACK_SIZE 624
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
#define PIOS_COM_BUFFER_SIZE 1024
|
|
|
|
#define PIOS_UDP_RX_BUFFER_SIZE PIOS_COM_BUFFER_SIZE
|
|
|
|
#define PIOS_UDP_TX_BUFFER_SIZE PIOS_COM_BUFFER_SIZE
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// System Settings
|
2013-05-19 16:37:30 +02:00
|
|
|
//
|
2012-03-22 18:50:33 +01:00
|
|
|
// See also System_stm32f4xx.c
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// These macros are deprecated
|
|
|
|
// please use PIOS_PERIPHERAL_APBx_CLOCK According to the table below
|
|
|
|
// #define PIOS_MASTER_CLOCK
|
|
|
|
// #define PIOS_PERIPHERAL_CLOCK
|
|
|
|
// #define PIOS_PERIPHERAL_CLOCK
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
#define PIOS_SYSCLK 168000000
|
|
|
|
// Peripherals that belongs to APB1 are:
|
|
|
|
// DAC |PWR |CAN1,2
|
|
|
|
// I2C1,2,3 |UART4,5 |USART3,2
|
|
|
|
// I2S3Ext |SPI3/I2S3 |SPI2/I2S2
|
|
|
|
// I2S2Ext |IWDG |WWDG
|
|
|
|
// RTC/BKP reg
|
2012-03-22 18:50:33 +01:00
|
|
|
// TIM2,3,4,5,6,7,12,13,14
|
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// Calculated as SYSCLK / APBPresc * (APBPre == 1 ? 1 : 2)
|
|
|
|
// Default APB1 Prescaler = 4
|
|
|
|
// #define PIOS_PERIPHERAL_APB1_CLOCK (PIOS_SYSCLK / 2)
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// Peripherals belonging to APB2
|
|
|
|
// SDIO |EXTI |SYSCFG |SPI1
|
|
|
|
// ADC1,2,3
|
|
|
|
// USART1,6
|
|
|
|
// TIM1,8,9,10,11
|
2012-03-22 18:50:33 +01:00
|
|
|
//
|
|
|
|
// Default APB2 Prescaler = 2
|
|
|
|
//
|
2013-05-19 16:37:30 +02:00
|
|
|
// #define PIOS_PERIPHERAL_APB2_CLOCK PIOS_SYSCLK
|
2012-03-22 18:50:33 +01:00
|
|
|
|
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// Interrupt Priorities
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// #define PIOS_IRQ_PRIO_LOW 12 // lower than RTOS
|
|
|
|
// #define PIOS_IRQ_PRIO_MID 8 // higher than RTOS
|
|
|
|
// #define PIOS_IRQ_PRIO_HIGH 5 // for SPI, ADC, I2C etc...
|
|
|
|
// #define PIOS_IRQ_PRIO_HIGHEST 4 // for USART etc...
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// PIOS_RCVR
|
|
|
|
// See also pios_board.c
|
2013-05-19 16:37:30 +02:00
|
|
|
// ------------------------
|
|
|
|
#define PIOS_RCVR_MAX_DEVS 3
|
|
|
|
#define PIOS_RCVR_MAX_CHANNELS 12
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// Receiver PPM input
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// #define PIOS_PPM_MAX_DEVS 1
|
|
|
|
// #define PIOS_PPM_NUM_INPUTS 12
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// Receiver PWM input
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// #define PIOS_PWM_MAX_DEVS 1
|
|
|
|
// #define PIOS_PWM_NUM_INPUTS 8
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// Receiver SPEKTRUM input
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// #define PIOS_SPEKTRUM_MAX_DEVS 2
|
|
|
|
// #define PIOS_SPEKTRUM_NUM_INPUTS 12
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// Receiver S.Bus input
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// #define PIOS_SBUS_MAX_DEVS 1
|
|
|
|
// #define PIOS_SBUS_NUM_INPUTS (16+2)
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// Receiver DSM input
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// #define PIOS_DSM_MAX_DEVS 2
|
|
|
|
// #define PIOS_DSM_NUM_INPUTS 12
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// Servo outputs
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// #define PIOS_SERVO_UPDATE_HZ 50
|
|
|
|
// #define PIOS_SERVOS_INITIAL_POSITION 0 /* dont want to start motors, have no pulse till settings loaded */
|
2012-03-22 18:50:33 +01:00
|
|
|
#define PIOS_SERVO_NUM_OUTPUTS 8
|
2013-05-19 16:37:30 +02:00
|
|
|
#define PIOS_SERVO_NUM_TIMERS PIOS_SERVO_NUM_OUTPUTS
|
|
|
|
// --------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// Timer controller settings
|
2013-05-19 16:37:30 +02:00
|
|
|
// --------------------------
|
|
|
|
// #define PIOS_TIM_MAX_DEVS 6
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// ADC
|
|
|
|
// None.
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
2012-03-22 18:50:33 +01:00
|
|
|
// USB
|
2013-05-19 16:37:30 +02:00
|
|
|
// -------------------------
|
|
|
|
// #define PIOS_USB_MAX_DEVS 1
|
|
|
|
// #define PIOS_USB_ENABLED 1 /* Should remove all references to this */
|
|
|
|
// #define PIOS_USB_HID_MAX_DEVS 1
|
2012-03-22 18:50:33 +01:00
|
|
|
|
2013-04-14 01:34:43 +02:00
|
|
|
#endif /* PIOS_BOARD_H */
|
|
|
|
|
2012-03-22 18:50:33 +01:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
* @}
|
|
|
|
*/
|