• 大小: 42KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-04
  • 语言: 其他
  • 标签: msp430  GPS  LCD12864  

资源简介

基于msp430的GPS数据解析,并在液晶屏上显示出来显示。接卸的是GPRMC的内容。

资源截图

代码片段和文件信息


#include“lcd12864.h“

const uchar LCD[]=“  初始化中>>>>  “;
uchar  Latitude_Char[]=“  N ddmm mmmm   “;  //纬度 
uchar  Longitude_Char[]=“  Edddmm mmmm   “; //经度 
uchar  DateTime[]=“ 00 00 00 00 00 “; //日期时间 

/***********************Delay Function*************************/

void Delay_Nus(uint n)                       //Delay n*1.4us
{
    uint i;
  for(i=n;i>0;i--)
   _delay_us(1);
}
void Delay_1ms()                              //Delay 1 ms
{
   _delay_ms(1);
}
void Delay_Nms(uint n)                        //Delay n ms
{
    uint i;
    for(i=n;i>0;i--)
    Delay_1ms();
}

/**************************************************************/

/*******************************************
函数名称:Init_LCD( )
功    能:LCD初始化
参    数:无
返回值  :无
******************************

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       8074  2011-09-29 19:45  MSP430+GPS+LCD12864\lcd12864.c

     文件      50457  2011-09-27 21:57  MSP430+GPS+LCD12864\GPS.ewp

     文件       1221  2011-09-29 21:03  MSP430+GPS+LCD12864\settings\GPS.cspy.bat

     文件       6529  2011-09-29 21:04  MSP430+GPS+LCD12864\settings\GPS.wsdt

     文件       1383  2011-09-29 21:04  MSP430+GPS+LCD12864\settings\GPS.dni

     文件       6345  2011-09-29 21:04  MSP430+GPS+LCD12864\settings\GPS.dbgdt

     文件       1724  2011-09-29 07:40  MSP430+GPS+LCD12864\lcd12864.h

     文件      13617  2011-09-29 21:04  MSP430+GPS+LCD12864\main.c

     文件      28535  2011-09-29 21:03  MSP430+GPS+LCD12864\Debug\Exe\GPS.d43

     文件      29788  2011-09-29 21:03  MSP430+GPS+LCD12864\Debug\Obj\main.r43

     文件      31788  2011-09-29 19:59  MSP430+GPS+LCD12864\Debug\Obj\lcd12864.r43

     文件       4482  2011-09-29 19:59  MSP430+GPS+LCD12864\Debug\Obj\msp430_config.r43

     文件        196  2011-09-29 21:04  MSP430+GPS+LCD12864\Debug\Obj\GPS.pbd

     文件        157  2011-09-17 11:40  MSP430+GPS+LCD12864\GPS.eww

     文件       3471  2011-09-29 21:04  MSP430+GPS+LCD12864\GPS.dep

     文件       1005  2011-09-29 19:47  MSP430+GPS+LCD12864\msp430_config.h

     文件        575  2011-09-29 19:50  MSP430+GPS+LCD12864\msp430_config.c

     文件      20124  2011-09-28 21:21  MSP430+GPS+LCD12864\GPS.ewd

     文件          0  2011-09-29 21:03  MSP430+GPS+LCD12864\path.txt

     目录          0  2011-09-17 11:39  MSP430+GPS+LCD12864\Debug\Exe

     目录          0  2011-09-17 11:39  MSP430+GPS+LCD12864\Debug\Obj

     目录          0  2011-09-17 11:39  MSP430+GPS+LCD12864\Debug\List

     目录          0  2011-09-17 11:39  MSP430+GPS+LCD12864\settings

     目录          0  2011-09-17 11:39  MSP430+GPS+LCD12864\Debug

     目录          0  2011-09-17 11:36  MSP430+GPS+LCD12864

----------- ---------  ---------- -----  ----

               209471                    25


评论

共有 条评论