##// END OF EJS Templates
actualizacion diagramas de flujo
actualizacion diagramas de flujo

File last commit:

r132:133
r194:195
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_ */