Skip to content
Snippets Groups Projects
Commit 63f41f56 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Merge pull request #1607 from chris-bo/Development

Update ultralcd_st7920_u8glib_rrd.h
parents d3259d0d b73ba26b
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,15 @@ static void ST7920_SWSPI_SND_8BIT(uint8_t val)
for( i=0; i<8; i++ )
{
WRITE(ST7920_CLK_PIN,0);
#if F_CPU == 20000000
__asm__("nop\n\t");
#endif
WRITE(ST7920_DAT_PIN,val&0x80);
val<<=1;
WRITE(ST7920_CLK_PIN,1);
#if F_CPU == 20000000
__asm__("nop\n\t""nop\n\t");
#endif
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment