2019-02-02 21:50:10 -08:00
|
|
|
/*
|
|
|
|
* @file test_trigger_multi_sync.cpp
|
|
|
|
*
|
|
|
|
* @date Feb 2, 2019
|
2020-01-07 21:02:40 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2019-02-02 21:50:10 -08:00
|
|
|
*/
|
|
|
|
|
2021-08-03 19:05:01 -07:00
|
|
|
#include "pch.h"
|
2019-02-03 18:19:47 -08:00
|
|
|
#include "trigger_mazda.h"
|
2019-02-02 21:50:10 -08:00
|
|
|
|
|
|
|
TEST(trigger, miataNA) {
|
2019-12-07 22:09:39 -08:00
|
|
|
TriggerWaveform naShape;
|
2021-11-15 20:42:23 -08:00
|
|
|
naShape.useOnlyRisingEdgeForTriggerTemp = false;
|
2019-02-03 18:19:47 -08:00
|
|
|
initializeMazdaMiataNaShape(&naShape);
|
2019-02-02 21:50:10 -08:00
|
|
|
|
2021-11-16 13:52:11 -08:00
|
|
|
EngineTestHelper eth(FRANKENSO_MIATA_NA6_MAP);
|
2021-05-25 14:15:48 -07:00
|
|
|
// todo: https://github.com/rusefi/rusefi/issues/679
|
2019-02-02 21:50:10 -08:00
|
|
|
}
|