/* This software is subject to the license described in the License.txt file included with this software distribution. You may not use this file except in compliance with this license. Copyright (c) Dynastream Innovations Inc. 2016 All rights reserved. */ using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; namespace ANT_Managed_Library.ANTFS { /// /// ANT-FS Configuration Parameters /// [StructLayout(LayoutKind.Sequential, Pack=1)] public struct ANTFS_ConfigParameters { /// /// Authentication Timeout /// public uint CfgAuthTimeout; /// /// Erase Timeout /// public uint CfgEraseTimeout; /// /// Upload Request Timeout /// public uint CfgUploadRequestTimeout; /// /// Upload Response Timeout /// public uint CfgUploadResponseTimeout; /// /// Burst Check Timeout /// public uint CfgBurstCheckTimeout; } }