2021-12-03 21:46:34 -08:00
|
|
|
/**
|
|
|
|
* @file global_mocks.cpp
|
|
|
|
*/
|
2021-05-07 14:43:24 -07:00
|
|
|
|
2021-08-03 19:05:01 -07:00
|
|
|
#include "pch.h"
|
2021-05-07 14:43:24 -07:00
|
|
|
|
|
|
|
#include "trigger_central.h"
|
|
|
|
|
|
|
|
bool verboseMode = false;
|
|
|
|
|
2024-04-03 10:08:42 -07:00
|
|
|
efitimems_t getTimeNowMs() {
|
2024-04-17 12:27:35 -07:00
|
|
|
return US2MS(getTimeNowUs());
|
2023-11-01 15:14:10 -07:00
|
|
|
}
|
|
|
|
|
2021-05-07 14:43:24 -07:00
|
|
|
void initLogging(LoggingWithStorage *logging, const char *name) {
|
|
|
|
}
|
2022-09-24 04:35:19 -07:00
|
|
|
|
2023-08-08 15:58:16 -07:00
|
|
|
void onCliCaseError(const char *token) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void onCliDuplicateError(const char *token) {
|
|
|
|
}
|
|
|
|
|
2023-08-08 20:02:20 -07:00
|
|
|
void onCliOverflowError() {
|
|
|
|
}
|