##// END OF EJS Templates
Para revision de PCBs
Para revision de PCBs

File last commit:

r93:94
r106:107
Show More
clockctrl.h
26 lines | 447 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/structs_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_ */