⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 program.cs

📁 老外的一个开源项目
💻 CS
字号:
// Copyright (c) David Vescovi.  All rights reserved.
// Part of Project DrumStix
// Windows Embedded Developers Interest Group (WE-DIG) community project.
// http://www.we-dig.org

using System;
using System.IO;
using System.IO.Ports;
using System.Collections.Generic;
using System.Text;

namespace STUartTest
{
    class Program
    {
        static void Main(string[] args)
        {
            System.Console.WriteLine("Hello world from Visual Studio 2005!");
            SerialPort sp = new SerialPort("COM1", 115200, Parity.None, 8, StopBits.One);
            try
            {
                sp.Open();
                sp.WriteLine("Hello from the Gumstix STUart com port!\r");
            }
            finally
            {
                sp.Close();
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -