Posted on December 22, 2017 at 16:13&sharpinclude 'lcd.h'void lcd_delayus(unsigned int us) //blocking delay for LCD, argument is approximate number of micro-seconds to delay{ unsigned char i; while(us--) { for(i=0; i<SystemCoreClock/4000000; i++); }...