fome-fw/firmware/controllers/algo/algo.h

26 lines
401 B
C
Raw Normal View History

2014-08-29 07:52:33 -07:00
/*
* @file algo.h
*
* @date Mar 2, 2014
2015-01-12 15:04:10 -08:00
* @author Andrey Belomutskiy, (c) 2012-2015
2014-08-29 07:52:33 -07:00
*/
#ifndef ALGO_H_
#define ALGO_H_
#include "engine_configuration.h"
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
2014-11-25 08:04:15 -08:00
void initDataStructures(DECLARE_ENGINE_PARAMETER_F);
2014-08-29 07:52:33 -07:00
void initAlgo(engine_configuration_s *engineConfiguration);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* ALGO_H_ */