26 lines
387 B
C
26 lines
387 B
C
/**
|
|
* @file trigger_gm.h
|
|
*
|
|
* @date Mar 28, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
*/
|
|
|
|
#ifndef TRIGGER_GM_H_
|
|
#define TRIGGER_GM_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
#include "trigger_structure.h"
|
|
|
|
void configureGmTriggerShape(trigger_shape_s *s);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* TRIGGER_GM_H_ */
|