29 lines
551 B
C
29 lines
551 B
C
|
/*
|
||
|
* @file common_headers.h
|
||
|
*
|
||
|
* @date Sep 16, 2018
|
||
|
* @author Andrey Belomutskiy, (c) 2012-2018
|
||
|
*/
|
||
|
|
||
|
#ifndef CONTROLLERS_CORE_COMMON_HEADERS_H_
|
||
|
#define CONTROLLERS_CORE_COMMON_HEADERS_H_
|
||
|
|
||
|
#include "efifeatures.h"
|
||
|
|
||
|
#include <math.h>
|
||
|
#include <string.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "error_handling.h"
|
||
|
#include "auto_generated_enums.h"
|
||
|
#include "rusefi_enums.h"
|
||
|
#include "efilib.h"
|
||
|
#include "efitime.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#include "datalogging.h"
|
||
|
#include "loggingcentral.h"
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#endif /* CONTROLLERS_CORE_COMMON_HEADERS_H_ */
|