112 lines
2.3 KiB
C
112 lines
2.3 KiB
C
|
|
#include <ch.h>
|
|
#include <hal.h>
|
|
#include <time.h>
|
|
#include <math.h>
|
|
|
|
#include "rusefi_enums.h"
|
|
#include "auto_generated_enums.h"
|
|
#include "obd_error_codes.h"
|
|
#include "error_handling.h"
|
|
|
|
#include "boards.h"
|
|
#include "efilib.h"
|
|
#include "efitime.h"
|
|
|
|
// this stuff is about ChibiOS 2.6 > Migration
|
|
typedef VirtualTimer virtual_timer_t;
|
|
typedef EventListener event_listener_t;
|
|
typedef Thread thread_t;
|
|
#define THD_WORKING_AREA WORKING_AREA
|
|
#define THD_FUNCTION(tname, arg) void tname(void *arg)
|
|
#define MSG_OK RDY_OK
|
|
#define eventflags_t flagsmask_t
|
|
|
|
|
|
#define US_TO_NT_MULTIPLIER 100
|
|
|
|
#define ALWAYS_INLINE INLINE
|
|
|
|
#define US2NT(x) (US_TO_NT_MULTIPLIER * (x))
|
|
|
|
#define NT2US(x) ((x) / US_TO_NT_MULTIPLIER)
|
|
|
|
// need to fight 32bit int overflow
|
|
|
|
#define MY_US2ST(x) ((x) / 10)
|
|
|
|
#ifndef GLOBAL_FT_H_
|
|
#define GLOBAL_FT_H_
|
|
|
|
#define EFI_ERROR_CODE 0xffffffff
|
|
|
|
#define DL_OUTPUT_BUFFER 9000
|
|
|
|
#define CCM_OPTIONAL
|
|
|
|
#include "rusefi_enums.h"
|
|
|
|
#define EFI_CUSTOM_PANIC_METHOD 1
|
|
|
|
// project-wide default thread stack size
|
|
#define UTILITY_THREAD_STACK_SIZE 1384
|
|
|
|
/**
|
|
* @brief @p Win32TestStream virtual methods table.
|
|
*/
|
|
struct Win32TestStreamVMT {
|
|
_base_channel_methods
|
|
};
|
|
|
|
typedef struct {
|
|
const struct Win32TestStreamVMT *vmt;
|
|
} TestStream;
|
|
|
|
extern TestStream testStream;
|
|
|
|
//##define TRUE 1
|
|
//#define FALSE 0
|
|
#endif /* GLOBAL_FT_H_ */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
void printToWin32Console(char *p);
|
|
int systicks2ms(int systicks);
|
|
int getRemainingStack(thread_t *otp);
|
|
|
|
// todo: move somewhere else?
|
|
bool lockAnyContext(void);
|
|
void unlockAnyContext(void);
|
|
void applyNewConfiguration(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/**
|
|
* number of SysClock ticks in one ms
|
|
*/
|
|
#define TICKS_IN_MS (CH_FREQUENCY / 1000)
|
|
|
|
#define hal_lld_get_counter_value() 0
|
|
|
|
#define EXTERN_ENGINE extern Engine *engine; \
|
|
extern engine_configuration_s *engineConfiguration; \
|
|
extern board_configuration_s *boardConfiguration; \
|
|
extern persistent_config_s *config; \
|
|
extern persistent_config_container_s persistentState; \
|
|
extern engine_configuration2_s * engineConfiguration2
|
|
|
|
#define DECLARE_ENGINE_PARAMETER_F void
|
|
#define DECLARE_ENGINE_PARAMETER_S
|
|
#define PASS_ENGINE_PARAMETER_F
|
|
#define PASS_ENGINE_PARAMETER
|
|
|
|
#define CONFIG(x) persistentState.persistentConfiguration.engineConfiguration.x
|
|
#define ENGINE(x) engine->x
|
|
#define TRIGGER_SHAPE(x) engine->triggerShape.x
|