User Activity

Posted on January 08, 2018 at 22:42what is the correct vt100 code for changing the terminal text colour?send_usart(0x1B); send_usart('['); send_usart(3); send_usart(4); send_usart('m');
Posted on January 08, 2018 at 22:39trying to change the colour of the text on the usart what is the correct combination to use?<p>send_usart(0x1B); send_usart('['); send_usart(3); send_usart(4); send_usart('m');</p>
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++); }...
Posted on December 20, 2017 at 14:06[code]#include '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; iBSRR=(0xff<<(LCD_D0_pin+16)); ...
Posted on December 20, 2017 at 14:02#ifndef _LCD_H_ #define _LCD_H_ #define LCD_PORT GPIOD #define LCD_RS_pin 11 #define LCD_RW_pin 12 #define LCD_E_pin 13 #define LCD_D0_pin 0 #define LCD_LINE1 0x80 #define LCD_LINE2 0xc0 #define set_LCD_RS() LCD_P...