资源简介
gps授时校时系统,需要gps模块支持。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO.Ports;
using System.Runtime.InteropServices;
using System.Threading;
namespace gps授时
{
public partial class 时钟芯片授时校验系统 : Form
{
static SerialPort sp = new SerialPort();
static SerialPort sp1 = new SerialPort();
string indata = “2001-01-01 00:00:00“;
string indata1 = “无GPS信号,请检查!“;
string indata2 = “2001-01-01 00:00:00.000“;
string indata3 = “2001-01-01 00:00:00.000“;
string indata4 = “2001-01-01 00:00:00“;
TimeSpan wucha;
TimeSpan shicha;
bool z = false;
bool s = false;
//调用Kernel32.DLL
[DllImport(“Kernel32.dll“)]
public static extern void GetLocalTime(SystemTime st);
[DllImport(“Kernel32.dll“)]
public static extern void SetLocalTime(SystemTime st);
[StructLayout(LayoutKind.Sequential)]
public class SystemTime
{
public ushort wYear;
public ushort wMonth;
public ushort wDayOfWeek;
public ushort wDay;
public ushort Whour;
public ushort wMinute;
public ushort wSecond;
public ushort wMilliseconds;
}
public 时钟芯片授时校验系统()
{
InitializeComponent();
this.FormClosing += new FormClosingEventHandler(Form1_FormClosing);
comboBox1.Enabled = false;
comboBox2.Enabled = false;
dateTimePicker1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
button4.Enabled = false;
button5.Enabled = false;
button7.Enabled = false;
button8.Enabled = false;
}
private void button1_Click(object sender EventArgs e)
{
string[] ports = SerialPort.GetPortNames();
comboBox1.Items.Clear();
comboBox2.Items.Clear();
foreach (string port in ports)
{
comboBox1.Items.Add(port);
comboBox2.Items.Add(port);
}
comboBox1.Enabled = true;
comboBox2.Enabled = true;
dateTimePicker1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
button4.Enabled = false;
button5.Enabled = false;
}
private void comboBox1_SelectedIndexChanged(object sender EventArgs e)
{
// Allow the user to set the appropriate properties.
sp.Close();
sp.PortName = comboBox1.Text;
sp.BaudRate = 115200;
sp.Parity = Parity.None;
sp.DataBits = 8;
sp.StopBits = StopBits.One;
sp.Handsh
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 225280 2012-11-01 23:15 gps授时\gps授时\bin\Debug\gps授时.exe
文件 32256 2012-11-01 23:15 gps授时\gps授时\bin\Debug\gps授时.pdb
文件 11600 2012-11-01 23:14 gps授时\gps授时\bin\Debug\gps授时.vshost.exe
文件 2423 2012-11-01 20:45 gps授时\gps授时\bin\Debug\gps授时.vshost.exe.manifest
文件 1 2012-10-31 20:58 gps授时\gps授时\ClassDiagram1.cd
文件 99678 2012-11-01 20:42 gps授时\gps授时\Clock.ico
文件 14114 2012-11-01 23:10 gps授时\gps授时\Form1.cs
文件 30123 2012-11-01 23:06 gps授时\gps授时\Form1.Designer.cs
文件 156426 2012-11-01 22:35 gps授时\gps授时\Form1.resx
文件 5930 2012-11-01 20:45 gps授时\gps授时\gps授时.csproj
文件 523 2012-10-31 21:06 gps授时\gps授时\gps授时.csproj.user
文件 5420 2012-11-01 12:03 gps授时\gps授时\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6494 2012-11-01 23:17 gps授时\gps授时\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 565 2012-11-01 23:17 gps授时\gps授时\obj\x86\Debug\gps授时.csproj.FileListAbsolute.txt
文件 975 2012-11-01 23:15 gps授时\gps授时\obj\x86\Debug\gps授时.csproj.GenerateResource.Cache
文件 225280 2012-11-01 23:15 gps授时\gps授时\obj\x86\Debug\gps授时.exe
文件 32256 2012-11-01 23:15 gps授时\gps授时\obj\x86\Debug\gps授时.pdb
文件 180 2012-11-01 23:15 gps授时\gps授时\obj\x86\Debug\gps授时.Properties.Resources.resources
文件 100244 2012-11-01 23:15 gps授时\gps授时\obj\x86\Debug\gps授时.时钟芯片授时校验系统.resources
文件 515 2012-10-31 22:04 gps授时\gps授时\Program.cs
文件 2423 2012-11-01 20:45 gps授时\gps授时\Properties\app.manifest
文件 1350 2012-10-31 20:53 gps授时\gps授时\Properties\AssemblyInfo.cs
文件 2870 2012-10-31 20:53 gps授时\gps授时\Properties\Resources.Designer.cs
文件 5612 2012-10-31 20:53 gps授时\gps授时\Properties\Resources.resx
文件 1096 2012-10-31 20:53 gps授时\gps授时\Properties\Settings.Designer.cs
文件 249 2012-10-31 20:53 gps授时\gps授时\Properties\Settings.settings
文件 869 2012-10-31 20:53 gps授时\gps授时.sln
..A..H. 24064 2012-11-01 23:18 gps授时\gps授时.suo
..A..H. 44032 2012-11-01 17:10 gps授时\gps授时.v11.suo
目录 0 2012-10-31 20:53 gps授时\gps授时\obj\x86\Debug\TempPE
............此处省略11个文件信息
相关资源
- ARM9mini2440GPS程序
- GPS接收程序
- 车辆北斗GPS定位管理方案
- 星历文件,GPS星历文件的格式及介绍
- GPS STC15程序,51程序
- GPS详细资料英文版
- 基于51单片机的GPS全球定位系统的设计
- GPS信号的模拟捕获和跟踪仿真
- ublox-m8nGPS模块频率波特率设置
- 基于GPS的小孩防丢器的设计开题报告
- GPS位置+速度两个观测量卡尔曼惯导航
- 基于STM32的MP4播放器带gps定位,界面显
- Virace GPS Simulator V0.3.1
- GPS数据解析C程序
- GPS d文件转o文件RNXCMP_4.0.4_Windows
- GPS_Net(crack)
- GetGPSInfo
- SIM800C+GPS+ILI9325LCD显示连接服务器
- unity的GPS的测试demo和代码
- GPS卫星坐标计算Rinex 2.10导航星历文件
- GPS定位信息采集与显示
- 基于FPGA的GPS实现
- gps模拟信号软件
- U-blox的GPS单芯片解决方案参考原理图
- 通过GPS广播星历计算卫星坐标
- GPS 模块测试
- vgps(免费版).zip
- 公交gps监控平台
- GPSINS组合导航系统GPSINS组合导航系统
- GPGGA协议解析简单版
评论
共有 条评论