• 大小: 2KB
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: 其他
  • 标签: lpc2131  

资源简介

程序的解释清楚明了,可直接在proteus上仿真。

资源截图

代码片段和文件信息

//============================================================
// 文件名:main.c
// 描  述:例题,支持modbus协议的可调时电子钟 
// 版  本:v0.2
// 编  写:王晓荣
// 日  期:20110505  
//============================================================

#include   
#include “lpc2131_config.h“
#include “lpc2131_drivers.h“
#include “uart_modbus.h“ 
#include “state.h“ 

void VariableInitial(void);  
/////////////////////////////////////

//-----------------------------------------------
//主函数    
//-----------------------------------------------
main(void)
{
KEY key = NULL;
 
LPC2131Config();
VariableInitial();

while (1)
{
key = GetKey();
AnswerUartModbus();
switch(State) 
{
case MAIN_SHOW:
MainShow(key);
break;
cas

评论

共有 条评论