parent
b756456450
commit
09bef1e440
|
@ -9,6 +9,14 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef FALSE
|
||||||
|
#define FALSE (0)
|
||||||
|
#endif /* FALSE */
|
||||||
|
|
||||||
|
#ifndef TRUE
|
||||||
|
#define TRUE (!(FALSE))
|
||||||
|
#endif /* TRUE */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#define EXTERNC extern "C"
|
#define EXTERNC extern "C"
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
|
#include "tunerstudio_outputs.h"
|
||||||
|
|
||||||
class CdmState {
|
class CdmState {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -9,14 +9,6 @@
|
||||||
* this file.
|
* this file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef FALSE
|
|
||||||
#define FALSE (0)
|
|
||||||
#endif /* FALSE */
|
|
||||||
|
|
||||||
#ifndef TRUE
|
|
||||||
#define TRUE (!(FALSE))
|
|
||||||
#endif /* TRUE */
|
|
||||||
|
|
||||||
#include <rusefi/arrays.h>
|
#include <rusefi/arrays.h>
|
||||||
#include <rusefi/crc.h>
|
#include <rusefi/crc.h>
|
||||||
#include <rusefi/fragments.h>
|
#include <rusefi/fragments.h>
|
||||||
|
@ -25,11 +17,11 @@
|
||||||
#include <rusefi/math.h>
|
#include <rusefi/math.h>
|
||||||
#include <rusefi/pt2001.h>
|
#include <rusefi/pt2001.h>
|
||||||
|
|
||||||
|
#include "global.h"
|
||||||
#include "efifeatures.h"
|
#include "efifeatures.h"
|
||||||
#include "rusefi_generated.h"
|
#include "rusefi_generated.h"
|
||||||
#include "loggingcentral.h"
|
#include "loggingcentral.h"
|
||||||
#include "error_handling.h"
|
#include "error_handling.h"
|
||||||
#include "global.h"
|
|
||||||
#include "efi_gpio.h"
|
#include "efi_gpio.h"
|
||||||
#include "tunerstudio_outputs.h"
|
#include "tunerstudio_outputs.h"
|
||||||
#include "engine.h"
|
#include "engine.h"
|
||||||
|
|
Loading…
Reference in New Issue