fixed ks0108 cs problem, issue #168

This commit is contained in:
olikraus 2017-01-21 09:02:00 +01:00
parent 1d760a9023
commit bccaff7bb9
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ void u8x8_byte_set_ks0108_cs(u8x8_t *u8x8, uint8_t arg)
arg = arg >> 1;
u8x8_gpio_call(u8x8, U8X8_MSG_GPIO_CS1, arg&1);
arg = arg >> 2;
u8x8_gpio_call(u8x8, U8X8_MSG_GPIO_CS2, arg&2);
u8x8_gpio_call(u8x8, U8X8_MSG_GPIO_CS2, arg&1);
}
/* 6800 mode */