當前位置: 首頁>>代碼示例>>C#>>正文


C# SerialPort.ReadTo方法代碼示例

本文整理匯總了C#中System.IO.Ports.SerialPort.ReadTo方法的典型用法代碼示例。如果您正苦於以下問題:C# SerialPort.ReadTo方法的具體用法?C# SerialPort.ReadTo怎麽用?C# SerialPort.ReadTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.IO.Ports.SerialPort的用法示例。


在下文中一共展示了SerialPort.ReadTo方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: ReadInitialization

        // TODO постараться вынести инициализацию в метод Read
        private InitializationData ReadInitialization(SerialPort readport)
        {
            while (true)
               {
               try
               {
                   readport.ReadTo("\xAA\x55");

                   // Считывание данных для создания пакета
                   // Здесь важен строгий порядок считывания байтов, точно как в пакете.
                   byte recipient = (byte)readport.ReadByte();
                   byte sender = (byte)readport.ReadByte();
                   ushort dataLenght = BitConverter.ToUInt16(
                       new byte[] { (byte)readport.ReadByte(), (byte)readport.ReadByte() }, 0);
                   byte option1 = (byte)readport.ReadByte();
                   byte option2 = (byte)readport.ReadByte();
                   ushort crc = BitConverter.ToUInt16(
                       new byte[] { (byte)readport.ReadByte(), (byte)readport.ReadByte() }, 0);

                   // Счетчик количества итерация цикла while
                   int count = 0;
                   while (readport.BytesToRead < dataLenght)
                   {
                       count++;
                       Thread.Sleep(_sleepTime);
                       if (count > dataLenght)
                       {
                           break;
                       }
                   }

                   byte[] data = new byte[dataLenght];
                   readport.Read(data, 0, dataLenght);

                   var packet = new Packet.Packet(new Header(recipient, sender, option1, option2), data);

                       // Проверка crc и id клиента, id отправителя и типа пакета
                       if (packet.Header.Crc == crc && packet.Header.Recipient == ClietnId && packet.Header.Sender == 0 && packet.Data.Type == DataType.Initialization)
                       {
                           SendAcknowledge(packet);

                           var initialization = StructConvertor.FromBytes<InitializationData>(packet.Data.Content);

                           return initialization;
                       }
               }

               catch (InvalidOperationException)
               {
                   IsPortAvailable(readport);
                   Thread.Sleep(3000);
               }

               catch (TimeoutException exception)
               {
                   // TODO ограничить количество отправок запроса
                   SendInitializationRequest();
               }

               catch (Exception exception)
               {
                   LogHelper.GetLogger<CommunicationUnit>().Error("Ошибка при чтение с порта", exception);
               }

               }
        }
開發者ID:Great-beaver,項目名稱:ChatClient,代碼行數:67,代碼來源:CommunicationUnit.cs

示例2: Read

        public static String[] Read(SerialPort port)
        {
            long Inlatitude;
            long Inlongitude;
            string strLatitude = "";
            string strLongitude = "";
            double latitude;
            double longitude;
            int Heart_Rate;
            bool flag_badData = false;
            string Date_Time;
            string[] words = {""};
            string data = "";

            do
            {
                flag_badData = false;
                data = port.ReadTo("]");
                words = data.Split(',');
                if (words.Length != 4 || words[0].Length < 8 || words[1].Length < 10 || words[2].Length > 3)
                {
                    flag_badData = true;
                }
                else
                {
                    strLatitude = words[0].Remove(0, words[0].Length - 8);
                    strLongitude = words[1].Remove(0, words[1].Length - 10);
                    if (!IsAllDigits(strLatitude) || !IsAllDigits(strLongitude) || !IsAllDigits(words[2]))
                    {
                        flag_badData = true;
                    }
                }
                
            } while ( flag_badData || Int64.Parse(strLatitude) > 90000000 || Int64.Parse(strLatitude) < -90000000 || Int64.Parse(strLongitude) < -180000000 || Int64.Parse(strLongitude) > 180000000);
            // lat = 90 long = 180
            if (words[0] != null && words[1] != null)
            {
                try
                {
                    Inlatitude = Int64.Parse(strLatitude);
                    latitude = (Inlatitude / 1000000.0);
                    Inlongitude = Int64.Parse(strLongitude);
                    longitude = (Inlongitude / 1000000.0);
                    words[0] = ("" + latitude);
                    words[1] = ("" + longitude);
                    //Location_ShowAll_Tab.Text = ("Lat:" + latitude + " Lon:" + longitude);            
                }
                catch (FormatException)
                {
                    // Location_ShowAll_Tab.Text = ("Format Issue!!!!");
                    latitude = 38.556868;
                    words[0] = "38.556868";
                    longitude = -121.358592;
                    words[1] = "-121.358592";
                    Read(port);
                }

                if (words[2] == null)
                {
                    Heart_Rate = 0; //set default heart rate
                    words[2] = ("N/A");
                    // Heart_Rate_ShowAll_Tab.Text = ("Set to default");
                }
                else
                {
                    try
                    {
                        Heart_Rate = Convert.ToInt32(words[2]);    // Convert String into int
                        words[2] = ("" + Heart_Rate);
                    }
                    catch (FormatException)
                    {
                        words[2] = ("Format Error");
                    }
                }
                if (words[3] == null)
                {
                    words[3] = ("Not available");
                }
                else
                {
                    try
                    {
                        Date_Time = words[3]; //  Keeps string as a string
                        words[3] = ("" + Date_Time);
                    }
                    catch (FormatException)
                    {
                        words[3] = ("Format Error");
                    }
                }
            }
            else
            {
                //set default lat/ long - csus
                latitude = 38.556868;
                words[0] = "38.556868";
                longitude = -121.358592;
                words[1] = "-121.358592";
                Read(port);
//.........這裏部分代碼省略.........
開發者ID:birgit123,項目名稱:EEE193_UserInterface,代碼行數:101,代碼來源:Form1.cs


注:本文中的System.IO.Ports.SerialPort.ReadTo方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。