2012-08-04 19:12:36 -03:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 PX4 Development Team. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/**
|
2012-11-02 03:42:36 -03:00
|
|
|
* @file px4io.h
|
|
|
|
*
|
|
|
|
* General defines and structures for the PX4IO module firmware.
|
2012-08-04 19:12:36 -03:00
|
|
|
*/
|
|
|
|
|
2012-11-02 03:42:36 -03:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <drivers/boards/px4io/px4io_internal.h>
|
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
#include "protocol.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constants and limits.
|
|
|
|
*/
|
|
|
|
#define MAX_CONTROL_CHANNELS 12
|
|
|
|
#define IO_SERVO_COUNT 8
|
|
|
|
|
2012-11-04 20:44:36 -04:00
|
|
|
/*
|
|
|
|
* Debug logging
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if 1
|
|
|
|
# define debug(fmt, ...) lib_lowprintf(fmt "\n", ##args)
|
|
|
|
#else
|
|
|
|
# define debug(fmt, ...) do {} while(0)
|
|
|
|
#endif
|
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
/*
|
|
|
|
* System state structure.
|
|
|
|
*/
|
|
|
|
struct sys_state_s
|
|
|
|
{
|
|
|
|
|
2012-11-06 23:03:08 -04:00
|
|
|
bool armed; /* IO armed */
|
2012-08-04 19:12:36 -03:00
|
|
|
bool arm_ok; /* FMU says OK to arm */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Data from the remote control input(s)
|
|
|
|
*/
|
|
|
|
int rc_channels;
|
|
|
|
uint16_t rc_channel_data[PX4IO_INPUT_CHANNELS];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Control signals from FMU.
|
|
|
|
*/
|
|
|
|
uint16_t fmu_channel_data[PX4IO_OUTPUT_CHANNELS];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Relay controls
|
|
|
|
*/
|
|
|
|
bool relays[PX4IO_RELAY_CHANNELS];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If true, we are using the FMU controls.
|
|
|
|
*/
|
|
|
|
bool mixer_use_fmu;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If true, state that should be reported to FMU has been updated.
|
|
|
|
*/
|
|
|
|
bool fmu_report_due;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If true, new control data from the FMU has been received.
|
|
|
|
*/
|
|
|
|
bool fmu_data_received;
|
2012-11-05 04:55:22 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Current serial interface mode, per the serial_rx_mode parameter
|
|
|
|
* in the config packet.
|
|
|
|
*/
|
|
|
|
uint8_t serial_rx_mode;
|
2012-08-04 19:12:36 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct sys_state_s system_state;
|
|
|
|
|
2012-11-03 05:13:17 -03:00
|
|
|
extern int frame_rx;
|
|
|
|
extern int frame_bad;
|
|
|
|
|
2012-08-04 19:12:36 -03:00
|
|
|
/*
|
|
|
|
* Software countdown timers.
|
|
|
|
*
|
|
|
|
* Each timer counts down to zero at one tick per ms.
|
|
|
|
*/
|
|
|
|
#define TIMER_BLINK_AMBER 0
|
|
|
|
#define TIMER_BLINK_BLUE 1
|
|
|
|
#define TIMER_STATUS_PRINT 2
|
|
|
|
#define TIMER_SANITY 7
|
|
|
|
#define TIMER_NUM_TIMERS 8
|
|
|
|
extern volatile int timers[TIMER_NUM_TIMERS];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GPIO handling.
|
|
|
|
*/
|
2012-11-05 04:54:08 -04:00
|
|
|
#define LED_BLUE(_s) stm32_gpiowrite(GPIO_LED1, !(_s))
|
|
|
|
#define LED_AMBER(_s) stm32_gpiowrite(GPIO_LED2, !(_s))
|
2012-11-02 03:42:36 -03:00
|
|
|
#define LED_SAFETY(_s) stm32_gpiowrite(GPIO_LED3, !(_s))
|
|
|
|
|
|
|
|
#define POWER_SERVO(_s) stm32_gpiowrite(GPIO_SERVO_PWR_EN, (_s))
|
|
|
|
#define POWER_ACC1(_s) stm32_gpiowrite(GPIO_SERVO_ACC1_EN, (_s))
|
|
|
|
#define POWER_ACC2(_s) stm32_gpiowrite(GPIO_SERVO_ACC2_EN, (_s))
|
|
|
|
#define POWER_RELAY1(_s) stm32_gpiowrite(GPIO_RELAY1_EN, (_s))
|
|
|
|
#define POWER_RELAY2(_s) stm32_gpiowrite(GPIO_RELAY2_EN, (_s))
|
|
|
|
|
|
|
|
#define OVERCURRENT_ACC stm32_gpioread(GPIO_ACC_OC_DETECT)
|
|
|
|
#define OVERCURRENT_SERVO stm32_gpioread(GPIO_SERVO_OC_DETECT
|
|
|
|
#define BUTTON_SAFETY stm32_gpioread(GPIO_BTN_SAFETY)
|
2012-08-04 19:12:36 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mixer
|
|
|
|
*/
|
2012-11-04 20:44:36 -04:00
|
|
|
extern int mixer_init(void);
|
2012-11-07 18:46:28 -04:00
|
|
|
extern void mixer_set_serial_mode(uint8_t newmode);
|
2012-08-04 19:12:36 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Safety switch/LED.
|
|
|
|
*/
|
|
|
|
extern void safety_init(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FMU communications
|
|
|
|
*/
|
|
|
|
extern void comms_init(void);
|
|
|
|
extern void comms_check(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Assertion codes
|
|
|
|
*/
|
|
|
|
#define A_GPIO_OPEN_FAIL 100
|
|
|
|
#define A_SERVO_OPEN_FAIL 101
|
|
|
|
#define A_INPUTQ_OPEN_FAIL 102
|