26 lines
452 B
C++
26 lines
452 B
C++
|
|
||
|
#include "global.h"
|
||
|
|
||
|
#include "engine_configuration.h"
|
||
|
|
||
|
#include "test_signal_executor.h"
|
||
|
#include "trigger_central.h"
|
||
|
#include "map_resize.h"
|
||
|
#include "engine_math.h"
|
||
|
#include "engine_test_helper.h"
|
||
|
|
||
|
bool verboseMode = false;
|
||
|
|
||
|
int timeNowUs = 0;
|
||
|
|
||
|
efitimeus_t getTimeNowUs(void) {
|
||
|
return timeNowUs;
|
||
|
}
|
||
|
|
||
|
efitick_t getTimeNowNt(void) {
|
||
|
return getTimeNowUs() * US_TO_NT_MULTIPLIER;
|
||
|
}
|
||
|
|
||
|
void initLogging(LoggingWithStorage *logging, const char *name) {
|
||
|
}
|