##// END OF EJS Templates

File last commit:

r132:133
r193:194
Show More
rtcctrl.h
27 lines | 452 B | text/x-c | CLexer
/*
* rtcctrl.h
*
* Created on: Oct 16, 2014
* Author: Alan Aguilar Sologuren
*/
#ifndef TIMEENGINE_RTCCTRL_H_
#define TIMEENGINE_RTCCTRL_H_
#include "../utils/defs.h"
class rtc_ctrl {
public:
rtc_ctrl();
virtual ~rtc_ctrl();
bool rtcCtrl_configure(void*);
bool rtcCtrl_set_time(void*);
bool rtcCtrl_get_time(void*);
bool rtcCtrl_activate_pps(void*);
private:
rtc_config_struct* rtc_config;
};
#endif /* TIMEENGINE_RTCCTRL_H_ */