#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
2019-03-24 16:52
 精彩回答 2  元偷偷看……0人看过

一周热门 更多>

相关问题

    相关文章