mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
1716a41a97
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1666 f9c3cf11-9bcb-44bc-f272-b75c42450872
21 lines
532 B
Plaintext
21 lines
532 B
Plaintext
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
global_struct::global_struct() :
|
|
// parameters
|
|
// note, all values not explicitly initialised here are zeroed
|
|
waypoint_send_timeout(1000), // 1 second
|
|
waypoint_receive_timeout(1000), // 1 second
|
|
|
|
// stream rates
|
|
streamRateRawSensors(0),
|
|
streamRateExtendedStatus(0),
|
|
streamRateRCChannels(0),
|
|
streamRateRawController(0),
|
|
//streamRateRawSensorFusion(0),
|
|
streamRatePosition(0),
|
|
streamRateExtra1(0),
|
|
streamRateExtra2(0),
|
|
streamRateExtra3(0)
|
|
{
|
|
}
|