16 lines
267 B
C
16 lines
267 B
C
|
/**
|
||
|
* @file idle_thread.h
|
||
|
* @brief Idle Valve Control thread
|
||
|
*
|
||
|
* @date May 23, 2013
|
||
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
||
|
*/
|
||
|
|
||
|
#ifndef IDLE_THREAD_H_
|
||
|
#define IDLE_THREAD_H_
|
||
|
|
||
|
void startIdleThread(void);
|
||
|
int getIdleSwitch(void);
|
||
|
|
||
|
#endif /* IDLE_THREAD_H_ */
|