OSDN Git Service

Removed the I2C ROM test codes.
authorShinichiro Nakamura <shinta.main.jp@gmail.com>
Fri, 24 Aug 2012 19:02:00 +0000 (04:02 +0900)
committerShinichiro Nakamura <shinta.main.jp@gmail.com>
Fri, 24 Aug 2012 19:02:00 +0000 (04:02 +0900)
firm/bare_metal/uzume.c

index da04543..66a7c7f 100644 (file)
@@ -254,18 +254,6 @@ void uzume_init(UZUME *p, void *user_data)
      * AT24C test...
      */
     at24c_init();
-
-    lcd_goto(0, 1); lcd_puts("write.1."); at24c_write(0x00, 'a');
-    lcd_goto(0, 1); lcd_puts("write.2."); at24c_write(0x01, 'b');
-    lcd_goto(0, 1); lcd_puts("write.3."); at24c_write(0x02, 'c');
-
-    lcd_goto(0, 1);
-    lcd_puts("read.1..");
-    at24c_read(0x00, &c); lcd_goto(0, 1); lcd_putc(c);
-    lcd_puts("read.2..");
-    at24c_read(0x01, &c); lcd_goto(1, 1); lcd_putc(c);
-    lcd_puts("read.3..");
-    at24c_read(0x02, &c); lcd_goto(2, 1); lcd_putc(c);
 }
 
 void uzume_set_effect(UZUME *p, UZUME_EFFECT_FUNC effect)