################################################################################
#
# PURPOSE: Test the vehicle's ability to control heading on the surface.
#          Manual launch. then proceed for 60 sec on the surface.
# DATE:    00/5/22:
# NOTES:   
#          
# MODS:
#
################################################################################
# 
behavior missionTimer
{
  timeOut = 30;
}

behavior depthEnvelope
{
  minDepth = 0;
  maxDepth = 2;
  minAltitude = 10;
  abortDepth = 3;
}


#
# Proceed on the surface for 60 seconds.
#
behavior setpoint
{
  duration     = 20;        #Seconds
  heading      = 30;       #Degrees
  speed        = 0.75;       #Meters/second
  verticalMode = pitch;
  pitch        = 0;         #Meters
  legDuration  = 20;        #Seconds
}

