2011-03-19 07:20:11 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-02-17 03:09:13 -04:00
|
|
|
|
|
|
|
#ifndef __GLOBAL_DATA_H
|
|
|
|
#define __GLOBAL_DATA_H
|
|
|
|
|
|
|
|
#define ONBOARD_PARAM_NAME_LENGTH 15
|
|
|
|
#define MAX_WAYPOINTS ((EEPROM_MAX_ADDR - WP_START_BYTE) / WP_SIZE) - 1 // - 1 to be safe
|
|
|
|
|
|
|
|
#define FIRMWARE_VERSION 18 // <-- change on param data struct modifications
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
///
|
|
|
|
// global data structure
|
|
|
|
// This structure holds all the vehicle parameters.
|
|
|
|
// TODO: bring in varibles floating around in ArduPilotMega.pde
|
|
|
|
//
|
|
|
|
struct global_struct
|
|
|
|
{
|
|
|
|
// waypoints
|
2011-03-13 03:25:38 -03:00
|
|
|
uint16_t requested_interface; // request port to use
|
2011-02-17 03:09:13 -04:00
|
|
|
uint16_t waypoint_request_i; // request index
|
|
|
|
uint16_t waypoint_dest_sysid; // where to send requests
|
|
|
|
uint16_t waypoint_dest_compid; // "
|
|
|
|
bool waypoint_sending; // currently in send process
|
|
|
|
bool waypoint_receiving; // currently receiving
|
|
|
|
uint16_t waypoint_count;
|
|
|
|
uint32_t waypoint_timelast_send; // milliseconds
|
|
|
|
uint32_t waypoint_timelast_receive; // milliseconds
|
|
|
|
uint16_t waypoint_send_timeout; // milliseconds
|
|
|
|
uint16_t waypoint_receive_timeout; // milliseconds
|
|
|
|
float junk; //used to return a junk value for interface
|
|
|
|
|
|
|
|
// data stream rates
|
|
|
|
uint16_t streamRateRawSensors;
|
|
|
|
uint16_t streamRateExtendedStatus;
|
|
|
|
uint16_t streamRateRCChannels;
|
|
|
|
uint16_t streamRateRawController;
|
|
|
|
uint16_t streamRatePosition;
|
|
|
|
uint16_t streamRateExtra1;
|
|
|
|
uint16_t streamRateExtra2;
|
|
|
|
uint16_t streamRateExtra3;
|
|
|
|
|
|
|
|
// struct constructor
|
|
|
|
global_struct();
|
|
|
|
} global_data;
|
|
|
|
|
|
|
|
extern "C" const char *param_nametab[];
|
|
|
|
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
|
|
|
#endif // __GLOBAL_DATA_H
|