##// END OF EJS Templates
Se siguieron las recomendaciones del Ing. Miguel Urco. Se ruteó de nuevo la parte analógica del circuito de adquicision
Se siguieron las recomendaciones del Ing. Miguel Urco. Se ruteó de nuevo la parte analógica del circuito de adquicision

File last commit:

r132:133
r167:168
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_ */