Modified structure to use a sub-module for platform APIs

This commit is contained in:
Marco Grella 2015-07-31 17:11:27 +02:00
parent 711dd02a9c
commit 62c33260bd
257 changed files with 1417 additions and 158047 deletions

View file

@ -29,22 +29,10 @@
*
* This file is part of the Contiki OS
*
* $Id: watchdog.c,v 1.1 2010/10/25 09:03:39 salvopitru Exp $
*/
/*---------------------------------------------------------------------------*/
/**
* \file
* Watchdog
* \author
* Salvatore Pitrulli <salvopitru@users.sourceforge.net>
*/
/*---------------------------------------------------------------------------*/
#include <stdio.h>
#include "dev/watchdog.h"
/*---------------------------------------------------------------------------*/
void
watchdog_init(void)
@ -55,28 +43,24 @@ watchdog_init(void)
void
watchdog_start(void)
{
/* We setup the watchdog to reset the device after 2.048 seconds,
unless watchdog_periodic() is called. */
//halInternalEnableWatchDog();
}
/*---------------------------------------------------------------------------*/
void
watchdog_periodic(void)
{
/* This function is called periodically to restart the watchdog
timer. */
//halResetWatchdog();
}
/*---------------------------------------------------------------------------*/
void
watchdog_stop(void)
{
//halInternalDisableWatchDog(MICRO_DISABLE_WATCH_DOG_KEY);
}
/*---------------------------------------------------------------------------*/
void
watchdog_reboot(void)
{
//halReboot();
}
/*---------------------------------------------------------------------------*/