在IAR 编译中Error[Pe020]: identifier "P4SEL" is undefined 是什么意思啊?求大神指点

//*************************************************************************//初始化IO口子程... //*************************************************************************
// 初始化IO口子程序
//*************************************************************************
void Port_init()
{
P4SEL = 0x00;
P4DIR = 0xFF;
P5SEL = 0x00;
P5DIR|= BIT0 + BIT1 + BIT5 + BIT6 + BIT7;
PSB_SET; //液晶并口方式
RST_SET;
}
//***********************************************************************
// 显示屏命令写入函数
//***********************************************************************
void LCD_write_com(unsigned char com)
{
RS_CLR;
RW_CLR;
EN_SET;
DataPort = com;
delay_ms(5);
EN_CLR;
}
//***********************************************************************
// 显示屏数据写入函数
//***********************************************************************
void LCD_write_data(unsigned char data)
{
RS_SET;
RW_CLR;
EN_SET;
DataPort = data;
delay_ms(5);
EN_CLR;
}
//***********************************************************************
// 显示屏清空显示
//***********************************************************************
void LCD_clear(void)
{
LCD_write_com(0x01);
delay_ms(5);
}
//***********************************************************************
//函数名称:DisplayCgrom(uchar hz)显示CGROM里的汉字
//***********************************************************************
void DisplayCgrom(uchar addr,uchar *hz)
{
LCD_write_com(addr);
delay_ms(5);
while(*hz != '\0')
{
LCD_write_data(*hz);
hz++;
delay_ms(5);
}
}
//***********************************************************************
// 显示屏单字符写入函数
//***********************************************************************
void LCD_write_char(unsigned char x,unsigned char y,unsigned char data)
{

if (y == 0)
{
LCD_write_com(0x80 + x); //第一行显示
}
if(y == 1)
{
LCD_write_com(0x90 + x); //第二行显示
}
if (y == 2)
{
LCD_write_com(0x88 + x); //第三行显示
}
if(y == 3)
{
LCD_write_com(0x98 + x); //第四行显示
}
delay_ms(1);
LCD_write_data(data);
delay_ms(1);
}
//***********************************************
展开
 我来答
风靡九幽
2014-07-17 · TA获得超过168个赞
知道小有建树答主
回答量:229
采纳率:0%
帮助的人:86.3万
展开全部
那个参数未定义啊,你找找P5SEL定义的位置,看看有没有这个P4SEL的定义,一般都在附近的
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式