##// END OF EJS Templates
updates, esquemáticos....
updates, esquemáticos. Se actualizó las imagenes de los esquemáticos de todos los circuitos, debido a los cambios realizados a los circuitos del sistema.

File last commit:

r93:94
r105:106
Show More
timeEnginectrl.h
37 lines | 791 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/structs_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_ */