26 lines
405 B
C
26 lines
405 B
C
/**
|
|
* @file ignition_central.h
|
|
* @brief TODO
|
|
*
|
|
* @date Nov 15, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
*/
|
|
|
|
#ifndef IGNITION_CENTRAL_H_
|
|
#define IGNITION_CENTRAL_H_
|
|
|
|
#include "signal_executor.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
void initIgnitionCentral(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* IGNITION_CENTRAL_H_ */
|