Rename myself
[bertos.git] / bertos / drv / eeprom.c
index 4e7f615fe6068e8589a35482d4ecd6aa4f2c1cf1..1783eb4964f4e4b6de1a60234f17d99d76d34b3b 100644 (file)
  *
  * \brief Driver for the 24xx16 and 24xx256 I2C EEPROMS (implementation)
  *
- * \note This implementation is AVR specific.
  *
  * \version $Id$
  * \author Stefano Fedrigo <aleph@develer.com>
- * \author Bernardo Innocenti <bernie@develer.com>
+ * \author Bernie Innocenti <bernie@codewiz.org>
  */
 
 #include "eeprom.h"
 
-#include <cfg/debug.h>
-#include <appconfig.h>  // CONFIG_EEPROM_VERIFY
+#warning TODO:Test and complete this module for arm platform.
+
+#if 0
+#include "cfg/cfg_eeprom.h"  // CONFIG_EEPROM_VERIFY
 #include <cfg/macros.h>  // MIN()
+#include <cfg/debug.h>
+
 #include <cpu/attr.h>
 #include CPU_HEADER(twi)
+
 #include <drv/wdt.h>
+
 #include <mware/byteorder.h> // cpu_to_be16()
 
 #include <string.h>  // memset()
@@ -339,3 +344,4 @@ void eeprom_test(void)
 }
 
 #endif // _DEBUG
+#endif