Fix some comments and typos.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 4 Dec 2008 09:43:15 +0000 (09:43 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 4 Dec 2008 09:43:15 +0000 (09:43 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1970 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/avr/drv/wdt_avr.h
bertos/drv/wdt.h
examples/triface/boot/main.c

index 0edb5d160756982747f970d5b44db13ddce5d0fa..1499d5a950b5261dcac4c21b8f03d32b94bec1f0 100644 (file)
@@ -32,9 +32,9 @@
  *
  * \brief Watchdog interface for AVR architecture.
  *
- * \note The AVR LibC already provvide the api to manange
- * the watchdog on AVR architecture. In LibC also define several
- * macro to set the timeout value (see documentation for more detail).
+ * \note The avr-libc already provide an api to manage the watchdog on AVR architecture.
+ * In avr-libc are also available several constants used to set the timeout value
+ * (see documentation for more detail).
  *
  * \version $Id$
  *
@@ -55,8 +55,7 @@
 /**
  * Reset the watchdog timer.
  *
- * This functions is already definded to avr libc,
- * we use it.
+ * This functions is already defind in avr-libc.
  */
 // void wdt_reset(void)
 
index 6e2cde30f1c574261c33edfb62ffc137991a596a..064a565f6fa7864aa54d41d23be31218c6214781 100644 (file)
@@ -90,7 +90,7 @@
         * timeout.
         *
         * \param timeout, this value is target dependant.
-        * See the target documentation for more detail.
+        * See the target documentation for more details.
         */
        INLINE void wdt_start(uint32_t timeout)
        {
index 1382ab9e55ca2867d4c17c9508c01925d9ab0b34..a1279ac177b3a98887fc01934feb84ab5a654cfa 100644 (file)
 /*
  * Watchdog disable.
  *
- * This function disable the watchdog timer, after a reset.
- * We should do it after the software reset (do with watchdog),
- * because in new AVR core do not reset the watchdog after
- * a cpu reset, so the watchdog timer remain enable resetting
- * every timeout time the cpu. This is necessary only with new
- * AVR core, for the other core this no have effect.
+ * This function disable the watchdog timer early after a reset.
+ * We must do it very soon because new AVR cores do not disable
+ * the watchdog timer after a cpu reset. In this way the watchdog
+ * timer is still enabled, continuously resetting the cpu. This is
+ * necessary only with new AVR cores, for other cores this code has
+ * no effect.
  *
  * \{
  */