⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 查看服务地址.c

📁 C8051ucos源码
💻 C
字号:

//---------------------------------------------------------------------------------------------------
//标准菜单程序
//
//
//---------------------------------------------------------------------------------------------------
#include "menu.h"
#include "CM240128.H"
#include "输入状态栏.h"
#include "gprs.h"
#include "数据存储.h"
#include "系统设置.h"
#include "main.h"
//---------------------------------------------------------------------------------------------------

void MENU_LookIP_Load(unsigned char *pBuf)
{

pBuf=pBuf;
ClrDisplay();
SetCurrLoc(0,0);
DisplayStr("查看服务器IP:(默认端口8002)",30);

LoadServerIP();

SetCurrLoc(0,32);

DisplayStr(ServerIp,30);

InputStateOption(1);
}
//---------------------------------------------------------------------------------------------------
//刷新
void MENU_LookIP_refurbish(void)
{
//user code 

//user code end
}
//---------------------------------------------------------------------------------------------------
//数据输入
void MENU_LookIP_incept(unsigned char *pBuf)
{
//user code 
if(pBuf==0)return;

			GoMainMenu();;
//user code end
}
//---------------------------------------------------------------------------------------------------
//---------------------------------------------------------------------------------------------------
//下面是不可改写的代码
void MENU_LookIP(unsigned char *pBuf)
{
MenuSet(MENU_LookIP_refurbish,MENU_LookIP_incept);
MENU_LookIP_Load(pBuf);
}
//---------------------------------------------------------------------------------------------------

⌨️ 快捷键说明

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