git-svn-id: https://svn.salfter.gotdns.org/svn/a2bfc/trunk@89 1b90f75b-8b96-4784-87c0-14078182fce6
14 lines
282 B
C
14 lines
282 B
C
#ifndef OW_TIME_H
|
|
#define OW_TIME_H
|
|
|
|
#include "ow.h"
|
|
#include <time.h>
|
|
|
|
// 1-Wire real-time clock functions
|
|
|
|
time_t ow_time_read(unsigned char* devid);
|
|
void ow_time_set(unsigned char* devid, time_t newtime);
|
|
unsigned char ow_time_idcheck(unsigned char* devid);
|
|
|
|
#endif // OW_TIME_H
|