mirror of https://github.com/rusefi/rusefi-1.git
21 lines
358 B
C
21 lines
358 B
C
/*
|
|
* @file logicdata.h
|
|
*
|
|
* Created on: Jul 19, 2020
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct CompositeEvent {
|
|
int timestamp;
|
|
bool primaryTrigger;
|
|
bool secondaryTrigger;
|
|
bool isTDC;
|
|
bool sync;
|
|
bool coil;
|
|
bool injector;
|
|
};
|
|
|
|
void writeFile(const char * fileName, CompositeEvent *events, int count);
|