[update] lcd example, minor

pull/11/head
Fabien Le Mentec 2011-10-16 11:26:52 -05:00
rodzic d8d8e62af1
commit 2834fed1d8
1 zmienionych plików z 8 dodań i 6 usunięć

Wyświetl plik

@ -325,9 +325,6 @@ static void __attribute__((naked)) __attribute__((used)) main(void)
Init_GPIOs();
LCD_GLASS_Init();
LCD_BlinkConfig(LCD_BlinkMode_AllSEG_AllCOM,LCD_BlinkFrequency_Div512);
LCD_GLASS_DisplayString("FUBAR");
while (1) ;
setup_leds();
@ -335,15 +332,20 @@ static void __attribute__((naked)) __attribute__((used)) main(void)
{
/* switch_leds_on(); */
GPIO_HIGH(LD_GPIO_PORT, LD_GREEN_GPIO_PIN);
GPIO_HIGH(LD_GPIO_PORT, LD_BLUE_GPIO_PIN);
GPIO_HIGH(LD_GPIO_PORT, LD_BLUE_GPIO_PIN);
LCD_GLASS_Clear();
LCD_GLASS_DisplayString("ON ");
delay();
/* switch_leds_off(); */
GPIO_LOW(LD_GPIO_PORT, LD_GREEN_GPIO_PIN);
GPIO_LOW(LD_GPIO_PORT, LD_BLUE_GPIO_PIN);
delay();
LCD_GLASS_Clear();
LCD_GLASS_DisplayString("FUBAR");
LCD_GLASS_DisplayString(" OFF");
delay();
}
}