baaa2c5741
Now the old GENERIC_RESOURCE macros works again (but usage has changed). Common resources (battery, leds, radio) are now in resources-common.
28 lines
463 B
C
28 lines
463 B
C
/**
|
|
* \addgroup Time related functions
|
|
*
|
|
* Resource definitions for time module
|
|
*
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* \file
|
|
* Resource definitions for the time module
|
|
*
|
|
* \author
|
|
* Ralf Schlatterbeck <rsc@tux.runtux.com>
|
|
*/
|
|
|
|
#ifndef time_resource_h
|
|
#define time_resource_h
|
|
#include "contiki.h"
|
|
#include "rest-engine.h"
|
|
|
|
extern resource_t res_timestamp;
|
|
extern resource_t res_localtime;
|
|
extern resource_t res_utc;
|
|
|
|
#endif // time_resource_h
|
|
/** @} */
|