显示部分程序不理解

2020-01-16 18:30发布

  1. for(i=0;i<num_data;i++)
  2.      { if(i<3)
  3.               { if(disp_buffer[i]!=0xff)
  4.                       { tempLCD[i]|=LCD_NNumber[disp_buffer[i]]>>4;
  5.                 tempLCD[i+1]|=LCD_NNumber[disp_buffer[i]]<<4;
  6.                           }
  7.                    }
  8.            else
  9.              {
  10.                    tempLCD[i+1]=LCD_NNumber[disp_buffer[i]];
  11.                  }
  12.          }

  13.   tempLCD[4]|=0x80;                                            //kw
  14.   tempLCD[6]|=0x80;                                            //СÊýµã
  15.   tempLCD[0]|=0x08;                                            //h
复制代码

显示部分为什么,分2种情况判断,I小于3和I大于3
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。