main.c

来自「用于GPRS远程电力抄表系统中采集器端的程序」· C语言 代码 · 共 29 行

C
29
字号

#include "recframe.h"
#include "process.h"
#include "io.h"
#include "init.h"
#include "time.h"
/*********************************************************************
* 函 数 名: main
* 功能描述: 主程序
* 函数说明: 
* 调用函数: Init()
* 全局变量:无
* 输 入: 无
* 返 回: 无
* 设 计 者:zy
***********************************************************************/
void main()
{	
	Init();
	while(1)
	{
		process();
		time_svr();
	}
	
}


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?