##// END OF EJS Templates
Para revision de PCBs
Para revision de PCBs

File last commit:

r93:94
r106:107
Show More
rtcctrl.h
27 lines | 460 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/structs_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_ */