Mark as obsolete. Remove CVS logs.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 26 May 2008 12:16:43 +0000 (12:16 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 26 May 2008 12:16:43 +0000 (12:16 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1367 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/avr/drv/ser_simple_avr.c
bertos/cpu/avr/drv/ser_simple_avr.h
bertos/cpu/avr/drv/timer_simple_avr.c
bertos/cpu/avr/drv/timer_simple_avr.h

index b0992f06e9ae64d47d7db22626015f85b4b77926..6fc1cb231ffa6782f6bc789d621606ee0eae9d5c 100644 (file)
  * \author Francesco Sacchi <batt@develer.com>
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.2  2006/07/19 12:56:26  bernie
- *#* Convert to new Doxygen style.
- *#*
- *#* Revision 1.1  2005/04/12 01:37:50  bernie
- *#* Import into DevLib.
- *#*
- *#* Revision 1.7  2005/01/23 12:24:27  bernie
- *#* Include macros.h for BV().
- *#*
- *#* Revision 1.6  2004/10/20 13:40:54  batt
- *#* Put {} instead of ; after while loop.
- *#*
- *#* Revision 1.5  2004/10/20 13:39:40  batt
- *#* Reformat.
- *#*
- *#* Revision 1.4  2004/10/20 13:30:02  batt
- *#* Optimization of UCSR0C writing
- *#*
- *#* Revision 1.3  2004/10/14 15:55:32  batt
- *#* Add ser_purge.
- *#*
- *#* Revision 1.2  2004/10/14 14:46:59  batt
- *#* Change baudrate calculation.
- *#*
- *#* Revision 1.1  2004/10/13 16:35:36  batt
- *#* New (simple) serial driver.
- *#*/
+
+#warning FIXME:This module is obsolete, yuo must refactor it.
+
+#if 0
 #include "ser_simple_avr.h"
 
 #include <cfg/compiler.h>
@@ -192,3 +167,6 @@ void _ser_close(void)
        /* Disable Rx & Tx. */
        UCSR0B &= ~(BV(RXEN) | BV(TXEN));
 }
+
+#endif
+
index a2bed9c52cf0eba733d6bafc672be61be729213c..4af2dda987828873fd83fc0202a8ff1ae124e4e5 100644 (file)
  * \author Francesco Sacchi <batt@develer.com>
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.2  2006/07/19 12:56:26  bernie
- *#* Convert to new Doxygen style.
- *#*
- *#* Revision 1.1  2005/04/12 01:37:50  bernie
- *#* Import into DevLib.
- *#*
- *#* Revision 1.5  2004/10/20 13:37:49  batt
- *#* Change testing of simple serial instead of ARCH_BOOT in sc driver.
- *#*
- *#* Revision 1.4  2004/10/15 12:22:04  batt
- *#* Readd ';' in setstatus macro.
- *#*
- *#* Revision 1.3  2004/10/15 12:13:57  batt
- *#* Correct \brief header.
- *#*
- *#* Revision 1.2  2004/10/15 11:54:21  batt
- *#* Reformat.
- *#*
- *#* Revision 1.1  2004/10/13 16:35:36  batt
- *#* New (simple) serial driver.
- *#*
- *#*
- */
-#ifndef SER_SIMPLE_H
-#define SER_SIMPLE_H
+#ifndef DRV_SER_SIMPLE_AVR_H
+#define DRV_SER_SIMPLE_AVR_H
+
+#warning FIXME:This module is obsolete, yuo must refactor it.
 
+#if 0
 /* For checking which serial driver is linked */
 #define SER_SIMPLE
 
@@ -168,4 +146,6 @@ extern void _ser_close(void);
 #define ser_setstatus(h, x)         do {(void)(x);} while(0)
 /* \} */
 
-#endif /* SER_SIMPLE_H */
+#endif /* DRV_SER_SIMPLE_AVR_H */
+
+#endif
index 5ec6eeeb27c0e9c6a55e6cedaec20b8fb23d5fd8..877bbad9c387d78fafd6085401cfcbf364791e99 100644 (file)
  * \author Francesco Sacchi <batt@develer.com>
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.2  2006/07/19 12:56:26  bernie
- *#* Convert to new Doxygen style.
- *#*
- *#* Revision 1.1  2005/04/12 01:37:50  bernie
- *#* Import into DevLib.
- *#*
- *#* Revision 1.8  2005/04/12 01:18:09  bernie
- *#* time_t -> mtime_t.
- *#*
- *#* Revision 1.7  2005/03/20 04:18:41  bernie
- *#* Fixes for CONFIG_WATCHDOG == 0.
- *#*
- *#* Revision 1.6  2004/10/27 09:38:07  aleph
- *#* Bootloader working with watchdog enabled
- *#*
- *#* Revision 1.5  2004/10/20 10:00:37  customer_pw
- *#* Add newline at eof
- *#*
- *#* Revision 1.4  2004/10/14 14:13:09  batt
- *#* Add comment.
- *#*
- *#* Revision 1.3  2004/10/14 13:29:20  batt
- *#* Fix 0ms delay bug.
- *#*
- *#* Revision 1.2  2004/10/13 17:53:05  batt
- *#* Delay with hw timer.
- *#*
- *#* Revision 1.1  2004/10/13 16:36:32  batt
- *#* Simplified timer delay routines.
- *#*
- *#*/
+#warning FIXME:This module is obsolete, yuo must refactor it.
+
+#if 0
 #include "hw_cpu.h"
 #include "timer_simple_avr.h"
 #include <drv/wdt.h>
@@ -106,3 +76,5 @@ void timer_delay(mtime_t time)
 #endif
        }
 }
+#endif
+
index 4815389ea9c008ac596cada640fafac1b100e349..a513209c9cb2bdf98a305b9f5d1e628118a0adb9 100644 (file)
   * \author Francesco Sacchi <batt@develer.com>
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.2  2006/07/19 12:56:26  bernie
- *#* Convert to new Doxygen style.
- *#*
- *#* Revision 1.1  2005/04/12 01:37:50  bernie
- *#* Import into DevLib.
- *#*
- *#* Revision 1.2  2005/04/12 01:18:09  bernie
- *#* time_t -> mtime_t.
- *#*
- *#* Revision 1.1  2004/10/13 16:36:32  batt
- *#* Simplified timer delay routines.
- *#*
- *#*
- */
-#ifndef TIMER_SIMPLE_H
+#ifndef DRV_TIMER_SIMPLE_AVR_H
+#define DRV_TIMER_SIMPLE_AVR_H
+
+#warning FIXME:This module is obsolete, yuo must refactor it.
+
+#if 0
 #include <compiler.h>
 
 extern void timer_delay(mtime_t time);
-#define TIMER_SIMPLE_H
 
 #endif /* TIMER_SIMPLE_H */
+
+#endif