##// 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
timeEnginectrl.h
37 lines | 783 B | text/x-c | CLexer
/*
* timeEnginectrl.h
*
* Created on: Oct 16, 2014
* Author: Alan Aguilar Sologuren
*/
#ifndef TIMEENGINE_TIMEENGINECTRL_H_
#define TIMEENGINE_TIMEENGINECTRL_H_
#include "../utils/defs.h"
#include "gnssctrl.h"
#include "clockctrl.h"
#include "rtcctrl.h"
class timeEngine_ctrl {
public:
timeEngine_ctrl();
virtual ~timeEngine_ctrl();
bool teCtrl_reset(void*);
bool teCtrl_get_status(void*);
bool teCtrl_get_position(void*);
bool teCtrl_send_command(void*);
bool teCtrl_activate_lock(void*);//solo para test
bool teCtrl_deactivate_lock(void*);//solo para test
private:
te_status_struct* te_status;
te_time_pkg* te_tmpkg;
te_command_struct* te_command;
gnss_ctrl te_gnss;
clock_ctrl te_clock;
rtc_ctrl te_rtc;
};
#endif /* TIMEENGINE_TIMEENGINECTRL_H_ */