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