Fix warning about oled.c with 'this for clause does not guard'.

This commit is contained in:
IllusionLee
2019-10-04 16:59:14 +08:00
parent 6dd262ac09
commit 3d5b7bd6a1

View File

@@ -179,7 +179,9 @@ void OLED_ShowChar(uint8_t x,uint8_t y,uint8_t chr,uint8_t Char_Size)
{
OLED_Set_Pos(x,y);
for(i=0;i<8;i++)
{
OLED_WR_Byte(F8X16[c*16+i],OLED_DATA);
}
OLED_Set_Pos(x,y+1);
for(i=0;i<8;i++)
OLED_WR_Byte(F8X16[c*16+i+8],OLED_DATA);