##// END OF EJS Templates
archivos de eagle de circuitos de adquisicion y "processingEngine" (pre-procesamiento) modificados luego de levatar las observaciones realizadas por el Ing. Miguel Urco
archivos de eagle de circuitos de adquisicion y "processingEngine" (pre-procesamiento) modificados luego de levatar las observaciones realizadas por el Ing. Miguel Urco

File last commit:

r132:133
r172:173
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_ */