Comply to new wdt interface.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 1 Dec 2008 18:35:36 +0000 (18:35 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 1 Dec 2008 18:35:36 +0000 (18:35 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1951 38d2e660-2303-0410-9eaa-f027e97ec537

examples/triface/protocol.c

index fa4c0bad9741bf18a8eed63e01a9a159773b45b1..3e4197e0c4fbde8c68eaf52b3b1713b94068f525 100644 (file)
@@ -300,8 +300,9 @@ MAKE_CMD(reset, "", "",
 ({
        //Silence "args not used" warning.
        (void)args;
-       wdt_init(7);
-       wdt_start();
+       wdt_init();
+       wdt_setTimeout(7);
+       wdt_enable(true);
 
        /*We want to have an infinite loop that lock access on watchdog timer.
        This piece of code it's equivalent to a while(true), but we have done this because