#169-D argument of type "char *" is incompatible with parameter

2019-03-24 13:46发布

#169-D argument of type "char *" is incompatible with parameter of type "unsigned char *" main.c    void LCD_write_string(unsigned char X,unsigned char Y,unsigned char *s)
{
  LCD_set_xy( X, Y ); //写地址
  while (*s)          //写显示字符
  {
    LCD_write_data( *s );
    s++;
  }
}   void display1()//静态数据显示
{
 LCD_write_string (0,0,"year:20        ") ;/警告提示这两行数据类型不兼容
 LCD_write_string( 0,1,"time:          ") ;
 delay_nms(50);
}   求助大侠怎么解决呢? 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
2条回答
HotMan
1楼-- · 2019-03-24 16:52
 精彩回答 2  元偷偷看……
今天下雨了
2楼-- · 2019-03-24 19:21
< :TI_MSP430_内容页_SA7 --> 某个参数应是uchar 你用的是char

一周热门 更多>

相关问题

    相关文章