资源简介

我们团队做的电动车的能量回收利用系统这些代码是液晶显示不分,包括电车图像,充放电状态,速度显示,里程显示。

资源截图

代码片段和文件信息

						  #include “delay.h“
/*------------------------------------------------
 uS延时函数,含有输入参数 unsigned char t,无返回值
 unsigned char 是定义无符号字符变量,其值的范围是
 0~255 这里使用晶振12M,精确延时请使用汇编大致延时
 长度如下 T=tx2+5 uS 
------------------------------------------------*/
void DelayUs2x(unsigned char t)
{   
 while(--t);
}
/*------------------------------------------------
 mS延时函数,含有输入参数 unsigned char t,无返回值
 unsigned char 是定义无符号字符变量,其值的范围是
 0~255 这里使用晶振12M,精确延时请使用汇编
------------------------------------------------*/
void DelayMs(unsigned char t)
{
     
 while(t--)
 {
     //大致延时1mS
     DelayUs2x(245);
 DelayUs2x(245);
 }
}

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

     文件       3437  2014-04-27 09:05  电动车可用\12864.h

     文件        654  2010-06-02 00:39  电动车可用\delay.h

     文件        746  2014-02-19 15:45  电动车可用\delay2.c

     文件       1877  2014-06-08 18:47  电动车可用\delay2.LST

     文件       1128  2014-06-08 18:47  电动车可用\delay2.OBJ

     文件       9584  2014-06-06 11:25  电动车可用\模拟电车显示速度

     文件        848  2014-06-06 11:24  电动车可用\模拟电车显示速度.c

     文件       4651  2014-06-06 11:25  电动车可用\模拟电车显示速度.hex

     文件         64  2014-06-06 11:25  电动车可用\模拟电车显示速度.lnp

     文件       2643  2014-06-06 11:25  电动车可用\模拟电车显示速度.LST

     文件      15449  2014-06-06 11:25  电动车可用\模拟电车显示速度.M51

     文件       9387  2014-06-06 11:25  电动车可用\模拟电车显示速度.OBJ

     文件        185  2014-06-07 15:21  电动车可用\模拟电车显示速度.plg

     文件      56164  2014-06-07 15:21  电动车可用\模拟电车显示速度.uvopt

     文件      13286  2014-06-06 11:28  电动车可用\模拟电车显示速度.uvproj

     文件      14058  2014-06-06 17:45  电动车可用\模拟电车显示速度2

     文件      12762  2014-06-06 17:44  电动车可用\模拟电车显示速度2.c

     文件       5850  2014-06-06 17:45  电动车可用\模拟电车显示速度2.hex

     文件         66  2014-06-06 17:45  电动车可用\模拟电车显示速度2.lnp

     文件      19875  2014-06-06 17:45  电动车可用\模拟电车显示速度2.LST

     文件      19557  2014-06-06 17:45  电动车可用\模拟电车显示速度2.M51

     文件      14339  2014-06-06 17:45  电动车可用\模拟电车显示速度2.OBJ

     文件      50077  2014-06-06 17:45  电动车可用\模拟电车显示速度2.plg

     文件      57617  2014-06-06 17:51  电动车可用\模拟电车显示速度2.uvopt

     文件      13453  2014-06-06 17:51  电动车可用\模拟电车显示速度2.uvproj

     文件          0  2014-06-06 11:28  电动车可用\模拟电车显示速度2_uvproj.bak

     文件      56163  2014-06-06 11:28  电动车可用\模拟电车显示速度_uvopt.bak

     文件          0  2014-06-06 10:59  电动车可用\模拟电车显示速度_uvproj.bak

     文件      15702  2014-06-08 18:47  电动车可用\电车2

     文件      13067  2014-06-08 18:47  电动车可用\电车2.c

............此处省略14个文件信息

评论

共有 条评论