Exemple #1
0
 /// <summary>
 /// Set the Deployment options.
 /// </summary>
 /// <param name="duration">Deployment durations in days.</param>
 /// <param name="numBatt">Number of batteries.</param>
 /// <param name="battType">Battery Type.</param>
 /// <param name="depthBottom">Depth to the bottom in meters.</param>
 /// <param name="mode">Deployment mode.</param>
 /// <param name="memoryCardUsed">Total bytes used on the memory card.</param>
 /// <param name="memoryCardTotal">Total size in bytes of the memory card.</param>
 public DeploymentOptions(UInt32 duration, UInt32 numBatt, AdcpBatteryType battType, UInt32 depthBottom, AdcpDeploymentMode mode, long memoryCardUsed, long memoryCardTotal)
 {
     Duration                    = duration;
     NumBatteries                = numBatt;
     BatteryType                 = battType;
     DepthToBottom               = depthBottom;
     DeploymentMode              = mode;
     InternalMemoryCardUsed      = memoryCardUsed;
     InternalMemoryCardTotalSize = memoryCardTotal;
 }
Exemple #2
0
 /// <summary>
 /// Set the Deployment options.
 /// </summary>
 /// <param name="duration">Deployment durations in days.</param>
 /// <param name="numBatt">Number of batteries.</param>
 /// <param name="battType">Battery Type.</param>
 /// <param name="depthBottom">Depth to the bottom in meters.</param>
 /// <param name="mode">Deployment mode.</param>
 /// <param name="memoryCardUsed">Total bytes used on the memory card.</param>
 /// <param name="memoryCardTotal">Total size in bytes of the memory card.</param>
 public DeploymentOptions(UInt32 duration, UInt32 numBatt, AdcpBatteryType battType, UInt32 depthBottom, AdcpDeploymentMode mode, long memoryCardUsed, long memoryCardTotal)
 {
     Duration = duration;
     NumBatteries = numBatt;
     BatteryType = battType;
     DepthToBottom = depthBottom;
     DeploymentMode = mode;
     InternalMemoryCardUsed = memoryCardUsed;
     InternalMemoryCardTotalSize = memoryCardTotal;
 }