##// 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
clockctrl.h
26 lines | 439 B | text/x-c | CLexer
/*
* clockctrl.h
*
* Created on: Oct 16, 2014
* Author: Alan Aguilar Sologuren
*/
#ifndef TIMEENGINE_CLOCKCTRL_H_
#define TIMEENGINE_CLOCKCTRL_H_
#include "../utils/defs.h"
class clock_ctrl {
public:
clock_ctrl();
virtual ~clock_ctrl();
bool clockCtrl_configure(void*);
bool clockCtrl_get_state(void*);
private:
clock_config_struct* clk_config;
clock_state_struct* clk_state;
};
#endif /* TIMEENGINE_CLOCKCTRL_H_ */