21 lines
341 B
C++
21 lines
341 B
C++
|
/*
|
||
|
* @file antilag_system.cpp
|
||
|
*
|
||
|
* @date 26. nov. 2022
|
||
|
* Author: Turbo Marian
|
||
|
*/
|
||
|
|
||
|
#include "pch.h"
|
||
|
|
||
|
#if EFI_ANTILAG_SYSTEM
|
||
|
#include "antilag_system.h"
|
||
|
#include "periodic_task.h"
|
||
|
#include "advance_map.h"
|
||
|
#include "engine_state.h"
|
||
|
#include "advance_map.h"
|
||
|
|
||
|
AntilagSystemBase::AntilagSystemBase() {
|
||
|
}
|
||
|
|
||
|
#endif /* EFI_ANTILAG_SYSTEM */
|