Get rid of the superfluous ';'
This commit is contained in:
parent
690e23821e
commit
99f6a13540
6 changed files with 236 additions and 99 deletions
|
|
@ -263,23 +263,23 @@ void Epd::SetLut_by_host(unsigned char* lut_vcom, unsigned char* lut_ww, unsign
|
|||
unsigned char count;
|
||||
|
||||
SendCommand(0x20); //VCOM
|
||||
for(count=0; count<60; count++)
|
||||
for(count=0; count<42; count++)
|
||||
SendData(lut_vcom[count]);
|
||||
|
||||
SendCommand(0x21); //LUTBW
|
||||
for(count=0; count<60; count++)
|
||||
for(count=0; count<42; count++)
|
||||
SendData(lut_ww[count]);
|
||||
|
||||
SendCommand(0x22); //LUTBW
|
||||
for(count=0; count<60; count++)
|
||||
for(count=0; count<42; count++)
|
||||
SendData(lut_bw[count]);
|
||||
|
||||
SendCommand(0x23); //LUTWB
|
||||
for(count=0; count<60; count++)
|
||||
for(count=0; count<42; count++)
|
||||
SendData(lut_wb[count]);
|
||||
|
||||
SendCommand(0x24); //LUTBB
|
||||
for(count=0; count<60; count++)
|
||||
for(count=0; count<42; count++)
|
||||
SendData(lut_bb[count]);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue