Example #1
0
        public int GetDtuByPosition(uint pos, ref IInfoStruct pDtuInfo)
        {
            var infostruct = new DtuInfoStruct();
            var result     = DTUSimWrapper.DSGetModemByPosition(pos, ref infostruct);

            if (pDtuInfo == null)
            {
                pDtuInfo = new InfoStruct();
            }

            pDtuInfo.ConnectionTime = infostruct.m_conn_time;
            pDtuInfo.DynamicIp      = infostruct.m_dynip;
            pDtuInfo.Id             = infostruct.m_dtuId;
            pDtuInfo.PhoneNo        = infostruct.m_phoneno;
            pDtuInfo.RefreshTime    = infostruct.m_refresh_time;

            return(result);
        }
Example #2
0
        public int GetNextData(ref IDataStruct pDataStruct, ushort waitseconds)
        {
            var datastruct = new DtuDataStruct();
            var result     = DTUSimWrapper.DSGetNextData(ref datastruct, waitseconds);

            if (pDataStruct == null)
            {
                pDataStruct = new DataStruct();
            }

            pDataStruct.Id          = datastruct.m_dtuId;
            pDataStruct.DataBuff    = datastruct.m_data_buf;
            pDataStruct.DataLength  = datastruct.m_data_len;
            pDataStruct.DataType    = datastruct.m_data_type;
            pDataStruct.ReceiveTime = datastruct.m_recv_time;

            return(result);
        }
Example #3
0
 public void GetLastError(IntPtr str, int nMaxStrSize)
 {
     DTUSimWrapper.DSGetLastError(str, nMaxStrSize);
 }
Example #4
0
 public uint GetDtuCount()
 {
     return(DTUSimWrapper.DSGetModemCount());
 }
Example #5
0
 public int SendData(uint DtuId, ushort len, byte[] buf)
 {
     return(DTUSimWrapper.DSSendData(BitConverter.GetBytes(DtuId), len, buf));
 }
Example #6
0
 public int StopService()
 {
     return(DTUSimWrapper.DSStopService());
 }
Example #7
0
 public int StartService(ushort uiListenPort)
 {
     return(DTUSimWrapper.DSStartService(uiListenPort));
 }