代码搜索:GPs 开发教程
找到约 10,000 项符合「GPs 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/461613/7223287
c globals.c
/*
GLOBALS.H
*/
#include "globals.h"
/* GLOBALS */
/* -- BYTE -- */
static unsigned char bytefornokia = 0x00;
static unsigned char LcdCache [505]; //F
www.eeworm.com/read/453274/7423002
h define.h
#ifndef _DEFINE_H
#define _DEFINE_H
//declare
typedef unsigned char Byte;
typedef unsigned int Word;
typedef unsigned long Long;
Long l_temp;//临时变量long型
Word w_temp;//临时变量word型
Byte
www.eeworm.com/read/441420/7670625
m edata.m
function [eph] = edata(ephemerisfile);
%EDATA Reads a binary ephemeris file and stores it in
% a matrix with 21 rows; column number is
% the number of ephemerides
% Typical
www.eeworm.com/read/441410/7670717
m edata.m
function [eph] = edata(ephemerisfile);
%EDATA Reads a binary ephemeris file and stores it in
% a matrix with 21 rows; column number is
% the number of ephemerides
% Typical
www.eeworm.com/read/440878/7679656
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// GPS_Comm.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.
www.eeworm.com/read/439975/7696333
m calc_azimuth_elevation.m
%This Function Compute Azimuth and Elevation of satellite from reciever
%CopyRight By Moein Mehrtash
%************************************************************************
% Written by Moein Me
www.eeworm.com/read/438918/7719401
txt 说明.txt
V1.0:可以用NOKIA6610液晶显示<mark>GPS</mark>_JUPITER21发过来的数据了,马上到楼上调试!!
V1.2:嘿嘿,可以收到卫星信号,推测,在<mark>GPS</mark>收到卫星信号时,就会自己调整自己的时间,若收到卫星数据大于2颗时,可以定位,这时经纬度数据有效.
V1.4:显示GPGSA与GPRMC信息,其中GPGSA(当前卫星信息)有定位卫星数,GPRMC(推荐定位信息)有经纬度信息
V1.6:可以显示 ...
www.eeworm.com/read/438909/7724668
m writepacket.m
function WritePacket(gps, id, data, type)
% WritePacket Write the a packet with the given id and data
% Since pid_dle_byte is used to delimit packet boundaries, if a data, size
% or checksum value
www.eeworm.com/read/438909/7724674
m opengps.m
function [gps, pid, version, text, protocols] = OpenGPS(port)
global pid_product_rqst
% Initialize global constants
constants;
%try
gps = serial(port);
www.eeworm.com/read/438909/7724677
m sendbeginpacket.m
function SendBeginPacket(gps, count)
% SENDBEGINPACKET Send the standard begin command packet
WritePacketHeader(gps, pid_records, 2)
fwrite(gps, count, 'int16');
WritePacketTerminator(gps);