/** * \file * * * \brief Generic text LCD driver (Test). * * * \author Daniele Basile * */ #warning TODO:This test is incomplete, you must review! #if 0 void lcd_test(void) { int i; for (i = 0; i < CONFIG_LCD_ROWS * CONFIG_LCD_COLS; ++i) { lcd_putCharUnlocked('0' + (i % 10), lcd_DefLayer); timer_delay(100); } } #endif