pursuit of truth
This commit is contained in:
parent
3a1aec8347
commit
6b97f23eae
|
@ -6,19 +6,9 @@
|
|||
*/
|
||||
|
||||
#pragma once
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
typedef void (*CommandHandler)(char *);
|
||||
|
||||
#include "efifeatures.h"
|
||||
|
||||
void consoleOutputBuffer(const uint8_t *buf, int size);
|
||||
void startConsole(CommandHandler console_line_callback_p);
|
||||
void onDataArrived(bool valid);
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <rusefi/true_false.h>
|
||||
#include "efifeatures.h"
|
||||
#include "obd_error_codes.h"
|
||||
#include "live_data_ids.h"
|
||||
|
|
|
@ -9,13 +9,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#ifndef FALSE
|
||||
#define FALSE (0)
|
||||
#endif /* FALSE */
|
||||
|
||||
#ifndef TRUE
|
||||
#define TRUE (!(FALSE))
|
||||
#endif /* TRUE */
|
||||
#include <rusefi/true_false.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define EXTERNC extern "C"
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "efifeatures.h"
|
||||
#include "rusefi_enums.h"
|
||||
|
||||
/* enable debug by default */
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 3ece6562d3b2a037430ffde62ca3539de657db29
|
||||
Subproject commit 83091c54c56c5b455574851cf7e0ee39672f70e6
|
|
@ -19,7 +19,6 @@
|
|||
#include <rusefi/efistringutil.h>
|
||||
|
||||
#include "global.h"
|
||||
#include "efifeatures.h"
|
||||
#include "rusefi_generated.h"
|
||||
#include "loggingcentral.h"
|
||||
#include "error_handling.h"
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <rusefi/true_false.h>
|
||||
|
||||
// see SIM_SD1_PORT and SIM_SD2_PORT
|
||||
#define TS_PRIMARY_UxART_PORT SD1
|
||||
#define EFI_TS_PRIMARY_IS_SERIAL TRUE
|
||||
|
@ -168,3 +170,7 @@
|
|||
|
||||
#define EFI_LUA TRUE
|
||||
#define LUA_USER_HEAP 100000
|
||||
|
||||
#ifndef TRUE
|
||||
fail("Truth not found");
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue