21 lines
220 B
C
21 lines
220 B
C
|
/*
|
||
|
* time.h
|
||
|
*
|
||
|
* Created on: 17.01.2016
|
||
|
* Author: wn
|
||
|
*/
|
||
|
|
||
|
#ifndef ENGINE_H_
|
||
|
#define ENGINE_H_
|
||
|
|
||
|
|
||
|
|
||
|
void engineInit();
|
||
|
uint16_t engineMaxPwmValue();
|
||
|
void engineSetPwmValue(uint16_t val);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#endif /* ENGINE_H_ */
|