BeRTOS
|
00001 00040 #warning TODO:This test is incomplete, you must review! 00041 00042 #if 0 00043 void lcd_test(void) 00044 { 00045 int i; 00046 00047 for (i = 0; i < CONFIG_LCD_ROWS * CONFIG_LCD_COLS; ++i) 00048 { 00049 lcd_putCharUnlocked('0' + (i % 10), lcd_DefLayer); 00050 timer_delay(100); 00051 } 00052 } 00053 #endif 00054