mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-20 10:54:14 +01:00
pios: main pios.h header cleanup
Conflicts: flight/PiOS/pios.h
This commit is contained in:
parent
304f366338
commit
39363d9efa
@ -1,13 +1,10 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file pios.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010-2013
|
||||
* @author PhoenixPilot, http://github.com/PhoenixPilot, Copyright (C) 2012
|
||||
* @brief Main PiOS header.
|
||||
* - Central header for the project.
|
||||
* @brief Main PiOS header.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
@ -25,162 +22,265 @@
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
/*
|
||||
* To add new PIOS options, drivers or functions please insert their
|
||||
* includes below into a corresponding group. If new driver has optional
|
||||
* features, add them as comments before including the driver header.
|
||||
* Finally update all pios_config.h files for every board in the same order
|
||||
* as in this file. Include new definition and all options, but comment
|
||||
* out unused ones.
|
||||
*/
|
||||
|
||||
#ifndef PIOS_H
|
||||
#define PIOS_H
|
||||
|
||||
/* Used in pios_*.* files macro */
|
||||
#define NELEMENTS(x) (sizeof(x) / sizeof((x)[0]))
|
||||
|
||||
#ifdef USE_SIM_POSIX
|
||||
/* SimPosix version of this file. This will probably be removed later */
|
||||
#include <pios_sim_posix.h>
|
||||
#else
|
||||
/* PIOS Feature Selection */
|
||||
#include "pios_config.h"
|
||||
|
||||
#if defined(PIOS_INCLUDE_FREERTOS)
|
||||
/* FreeRTOS Includes */
|
||||
#include "FreeRTOS.h"
|
||||
#include "task.h"
|
||||
#include "queue.h"
|
||||
#include "semphr.h"
|
||||
#endif
|
||||
|
||||
/* C Lib Includes */
|
||||
/* C Lib includes */
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "pios_config.h"
|
||||
/* STM32 Std Perf Lib */
|
||||
#if defined(STM32F4XX)
|
||||
# include <stm32f4xx.h>
|
||||
# include <stm32f4xx_rcc.h>
|
||||
#elif defined(STM32F2XX)
|
||||
#include <stm32f2xx.h>
|
||||
#include <stm32f2xx_syscfg.h>
|
||||
/* STM32 Std Peripherals Lib */
|
||||
#ifdef STM32F4XX
|
||||
#include <stm32f4xx.h>
|
||||
#include <stm32f4xx_rcc.h>
|
||||
#else
|
||||
#include <stm32f10x.h>
|
||||
#endif
|
||||
|
||||
#if defined(PIOS_INCLUDE_SDCARD)
|
||||
/* Dosfs Includes */
|
||||
#include <dosfs.h>
|
||||
/* PIOS board specific feature selection */
|
||||
#include "pios_config.h"
|
||||
|
||||
/* Mass Storage Device Includes */
|
||||
//#include <msd.h>
|
||||
#endif
|
||||
|
||||
/* Generic initcall infrastructure */
|
||||
#if defined(PIOS_INCLUDE_INITCALL)
|
||||
#include "pios_initcall.h"
|
||||
#endif
|
||||
|
||||
/* PIOS Board Specific Device Configuration */
|
||||
/* PIOS board specific device configuration */
|
||||
#include "pios_board.h"
|
||||
|
||||
/* PIOS Hardware Includes (STM32F10x) */
|
||||
#include <pios_sys.h>
|
||||
#include <pios_delay.h>
|
||||
#include <pios_led.h>
|
||||
#include <pios_sdcard.h>
|
||||
#include <pios_usart.h>
|
||||
#include <pios_irq.h>
|
||||
#include <pios_adc.h>
|
||||
#include <pios_servo.h>
|
||||
#include <pios_rtc.h>
|
||||
#include <pios_i2c.h>
|
||||
#include <pios_spi.h>
|
||||
#include <pios_overo.h>
|
||||
#include <pios_ppm.h>
|
||||
#include <pios_pwm.h>
|
||||
#include <pios_rcvr.h>
|
||||
#include <pios_dsm.h>
|
||||
#include <pios_sbus.h>
|
||||
#include <pios_usb_hid.h>
|
||||
/* PIOS debug interface */
|
||||
/* #define PIOS_INCLUDE_DEBUG_CONSOLE */
|
||||
/* #define DEBUG_LEVEL 0 */
|
||||
#include <pios_debug.h>
|
||||
#include <pios_gpio.h>
|
||||
#include <pios_exti.h>
|
||||
#include <pios_wdg.h>
|
||||
|
||||
/* PIOS Hardware Includes (Common) */
|
||||
#include <pios_sdcard.h>
|
||||
#include <pios_com.h>
|
||||
#if defined(PIOS_INCLUDE_MPXV)
|
||||
#include <pios_mpxv.h>
|
||||
/* PIOS common functions */
|
||||
#include <pios_crc.h>
|
||||
|
||||
/* PIOS system functions */
|
||||
#ifdef PIOS_INCLUDE_FREERTOS
|
||||
#include "FreeRTOS.h"
|
||||
#include "task.h"
|
||||
#include "queue.h"
|
||||
#include "semphr.h"
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_ETASV3)
|
||||
#include <pios_etasv3.h>
|
||||
#ifdef PIOS_INCLUDE_DELAY
|
||||
#include <pios_delay.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_BMP085)
|
||||
#include <pios_bmp085.h>
|
||||
#ifdef PIOS_INCLUDE_INITCALL
|
||||
#include "pios_initcall.h"
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_HCSR04)
|
||||
#include <pios_hcsr04.h>
|
||||
#ifdef PIOS_INCLUDE_SYS
|
||||
#include <pios_sys.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_HMC5843)
|
||||
#include <pios_hmc5843.h>
|
||||
|
||||
/* PIOS hardware peripherals */
|
||||
#ifdef PIOS_INCLUDE_IRQ
|
||||
#include <pios_irq.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_HMC5883)
|
||||
#include <pios_hmc5883.h>
|
||||
#ifdef PIOS_INCLUDE_RTC
|
||||
#include <pios_rtc.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_I2C_ESC)
|
||||
#include <pios_i2c_esc.h>
|
||||
#ifdef PIOS_INCLUDE_TIM
|
||||
#include <pios_tim.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_IMU3000)
|
||||
#include <pios_imu3000.h>
|
||||
#ifdef PIOS_INCLUDE_USART
|
||||
#include <pios_usart.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_MPU6050)
|
||||
#include <pios_mpu6050.h>
|
||||
#ifdef PIOS_INCLUDE_ADC
|
||||
#include <pios_adc.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_MPU6000)
|
||||
#include <pios_mpu6000.h>
|
||||
#ifdef PIOS_INCLUDE_I2C
|
||||
#include <pios_i2c.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_L3GD20)
|
||||
#include <pios_l3gd20.h>
|
||||
#ifdef PIOS_INCLUDE_SPI
|
||||
#include <pios_spi.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_MS5611)
|
||||
#include <pios_ms5611.h>
|
||||
#ifdef PIOS_INCLUDE_GPIO
|
||||
#include <pios_gpio.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_IAP)
|
||||
#include <pios_iap.h>
|
||||
#ifdef PIOS_INCLUDE_EXTI
|
||||
#include <pios_exti.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_ADXL345)
|
||||
#ifdef PIOS_INCLUDE_WDG
|
||||
#include <pios_wdg.h>
|
||||
#endif
|
||||
|
||||
/* PIOS USB functions */
|
||||
#ifdef PIOS_INCLUDE_USB
|
||||
/* #define PIOS_INCLUDE_USB_HID */
|
||||
/* #define PIOS_INCLUDE_USB_CDC */
|
||||
/* #define PIOS_INCLUDE_USB_RCTX */
|
||||
#include <pios_usb.h>
|
||||
#ifdef PIOS_INCLUDE_USB_HID
|
||||
#include <pios_usb_hid.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_USB_RCTX
|
||||
#include <pios_usb_rctx.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* PIOS sensor interfaces */
|
||||
#ifdef PIOS_INCLUDE_ADXL345
|
||||
/* ADXL345 3-Axis Accelerometer */
|
||||
#include <pios_adxl345.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_BMA180)
|
||||
#ifdef PIOS_INCLUDE_BMA180
|
||||
/* BMA180 3-Axis Accelerometer */
|
||||
#include <pios_bma180.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_VIDEO)
|
||||
#include <pios_video.h>
|
||||
#ifdef PIOS_INCLUDE_L3GD20
|
||||
/* L3GD20 3-Axis Gyro */
|
||||
#include <pios_l3gd20.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_WAVE)
|
||||
#include <pios_wavplay.h>
|
||||
#ifdef PIOS_INCLUDE_MPU6000
|
||||
/* MPU6000 3-Axis Gyro/Accelerometer */
|
||||
/* #define PIOS_MPU6000_ACCEL */
|
||||
#include <pios_mpu6000.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_HMC5843
|
||||
/* HMC5843 3-Axis Digital Compass */
|
||||
#include <pios_hmc5843.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_HMC5883
|
||||
/* HMC5883 3-Axis Digital Compass */
|
||||
/* #define PIOS_HMC5883_HAS_GPIOS */
|
||||
#include <pios_hmc5883.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_BMP085
|
||||
/* BMP085 Barometric Pressure Sensor */
|
||||
#include <pios_bmp085.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_MS5611
|
||||
/* MS5611 Barometric Pressure Sensor */
|
||||
#include <pios_ms5611.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_MPXV
|
||||
/* MPXV5004, MPXV7002 based Airspeed Sensor */
|
||||
#include <pios_mpxv.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_ETASV3
|
||||
/* Eagle Tree Systems Airspeed MicroSensor V3 */
|
||||
#include <pios_etasv3.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_HCSR04
|
||||
/* HC-SR04 Ultrasonic Sensor */
|
||||
#include <pios_hcsr04.h>
|
||||
#endif
|
||||
|
||||
#if defined(PIOS_INCLUDE_FLASH)
|
||||
/* PIOS receiver drivers */
|
||||
#ifdef PIOS_INCLUDE_PWM
|
||||
#include <pios_pwm.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_PPM
|
||||
#include <pios_ppm.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_DSM
|
||||
#include <pios_dsm.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_SBUS
|
||||
#include <pios_sbus.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_GCSRCVR
|
||||
/* only priv header */
|
||||
#endif
|
||||
|
||||
/* PIOS common peripherals */
|
||||
#ifdef PIOS_INCLUDE_LED
|
||||
#include <pios_led.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_IAP
|
||||
#include <pios_iap.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_SERVO
|
||||
#include <pios_servo.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_I2C_ESC
|
||||
#include <pios_i2c_esc.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_OVERO
|
||||
/* #define PIOS_OVERO_SPI */
|
||||
#include <pios_overo.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_SDCARD
|
||||
/* #define LOG_FILENAME "startup.log" */
|
||||
#include <dosfs.h>
|
||||
#include <pios_sdcard.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_FLASH
|
||||
/* #define PIOS_INCLUDE_FLASH_SECTOR_SETTINGS */
|
||||
/* #define FLASH_FREERTOS */
|
||||
#include <pios_flash.h>
|
||||
#include <pios_flashfs.h>
|
||||
#endif
|
||||
|
||||
#if defined(PIOS_INCLUDE_BL_HELPER)
|
||||
#include <pios_bl_helper.h>
|
||||
#ifdef PIOS_INCLUDE_FLASH_EEPROM
|
||||
#include <pios_eeprom.h>
|
||||
#endif
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB)
|
||||
#include <pios_usb.h>
|
||||
#endif
|
||||
|
||||
#if defined(PIOS_INCLUDE_RFM22B)
|
||||
#include <pios_rfm22b.h>
|
||||
#ifdef PIOS_INCLUDE_RFM22B
|
||||
/* #define PIOS_INCLUDE_PACKET_HANDLER */
|
||||
#ifdef PIOS_INCLUDE_RFM22B_COM
|
||||
#include <pios_rfm22b_com.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_RFM22B_RCVR
|
||||
#include <pios_rfm22b_rcvr.h>
|
||||
#endif
|
||||
|
||||
#include <pios_rfm22b.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_VIDEO
|
||||
#include <pios_video.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_WAVE
|
||||
#include <pios_wavplay.h>
|
||||
#endif
|
||||
#ifdef PIOS_INCLUDE_UDP
|
||||
#include <pios_udp.h>
|
||||
#endif
|
||||
|
||||
#include <pios_crc.h>
|
||||
/* PIOS abstract receiver interface */
|
||||
#ifdef PIOS_INCLUDE_RCVR
|
||||
#include <pios_rcvr.h>
|
||||
#endif
|
||||
|
||||
#define NELEMENTS(x) (sizeof(x) / sizeof(*(x)))
|
||||
#endif /* USE_SIMPOSIX */
|
||||
/* PIOS abstract comms interface with options */
|
||||
#ifdef PIOS_INCLUDE_COM
|
||||
/* #define PIOS_INCLUDE_COM_MSG */
|
||||
/* #define PIOS_INCLUDE_TELEMETRY_RF */
|
||||
/* #define PIOS_INCLUDE_COM_TELEM */
|
||||
/* #define PIOS_INCLUDE_COM_FLEXI */
|
||||
/* #define PIOS_INCLUDE_COM_AUX */
|
||||
/* #define PIOS_TELEM_PRIORITY_QUEUE */
|
||||
/* #define PIOS_INCLUDE_GPS */
|
||||
/* #define PIOS_GPS_MINIMAL */
|
||||
/* #define PIOS_INCLUDE_GPS_NMEA_PARSER */
|
||||
/* #define PIOS_INCLUDE_GPS_UBX_PARSER */
|
||||
/* #define PIOS_GPS_SETS_HOMELOCATION */
|
||||
#include <pios_com.h>
|
||||
#endif
|
||||
|
||||
/* PIOS bootloader helper */
|
||||
#ifdef PIOS_INCLUDE_BL_HELPER
|
||||
/* #define PIOS_INCLUDE_BL_HELPER_WRITE_SUPPORT */
|
||||
#include <pios_bl_helper.h>
|
||||
#endif
|
||||
|
||||
/* Performance counters */
|
||||
/* #define IDLE_COUNTS_PER_SEC_AT_NO_LOAD 995998 */
|
||||
|
||||
|
||||
#endif /* USE_SIM_POSIX */
|
||||
#endif /* PIOS_H */
|
||||
|
Loading…
x
Reference in New Issue
Block a user