auto-sync
This commit is contained in:
parent
9cd4327788
commit
0ca94f4a10
|
@ -313,7 +313,7 @@ void setMiata1996(engine_configuration_s *engineConfiguration, board_configurati
|
|||
|
||||
|
||||
engineConfiguration->mafAdcChannel = EFI_ADC_1;
|
||||
engineConfiguration->cltAdcChannel = EFI_ADC_3;
|
||||
engineConfiguration->cltAdcChannel = EFI_ADC_11;
|
||||
engineConfiguration->tpsAdcChannel = EFI_ADC_13;
|
||||
|
||||
boardConfiguration->ignitionPins[0] = GPIOE_12; // Frankenstein: high side #3
|
||||
|
|
|
@ -3,7 +3,6 @@ CONTROLLERS_ALGO_SRC = $(PROJECT_DIR)/controllers/algo/map_adjuster.c \
|
|||
$(PROJECT_DIR)/controllers/algo/signal_executor.c \
|
||||
$(PROJECT_DIR)/controllers/algo/malfunction_central.c \
|
||||
$(PROJECT_DIR)/controllers/algo/idle_controller.c \
|
||||
$(PROJECT_DIR)/controllers/algo/wave_chart.c \
|
||||
$(PROJECT_DIR)/controllers/algo/nmea.c
|
||||
|
||||
CONTROLLERS_ALGO_SRC_CPP = $(PROJECT_DIR)/controllers/algo/OutputSignalArray.cpp \
|
||||
|
@ -14,5 +13,6 @@ CONTROLLERS_ALGO_SRC_CPP = $(PROJECT_DIR)/controllers/algo/OutputSignalArray.cpp
|
|||
$(PROJECT_DIR)/controllers/algo/engine.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/event_registry.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/algo.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/wave_chart.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/enum_strings.cpp
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* @file wave_chart.c
|
||||
* @file wave_chart.cpp
|
||||
* @brief Dev console wave sniffer logic
|
||||
*
|
||||
* Here we have our own build-in logic analyzer. The data we aggregate here is sent to the
|
|
@ -18,19 +18,15 @@
|
|||
/**
|
||||
* @brief Dev console sniffer data buffer
|
||||
*/
|
||||
typedef struct {
|
||||
class WaveChart {
|
||||
public:
|
||||
#if EFI_WAVE_CHART
|
||||
Logging logging;
|
||||
#endif /* EFI_WAVE_CHART */
|
||||
int counter;
|
||||
int startTime;
|
||||
volatile int isInitialized;
|
||||
} WaveChart;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif /* __cplusplus */
|
||||
};
|
||||
|
||||
void addWaveChartEvent3(WaveChart *chart, const char *name, const char *msg, const char *msg2);
|
||||
void publishChart(WaveChart *chart);
|
||||
|
@ -38,11 +34,6 @@ void initWaveChart(WaveChart *chart);
|
|||
void showWaveChartHistogram(void);
|
||||
void resetWaveChart(WaveChart *chart);
|
||||
void setChartSize(int newSize);
|
||||
//int isWaveChartFull(WaveChart *chart);
|
||||
void publishChartIfFull(WaveChart *chart);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif /* WAVE_CHART_H_ */
|
||||
|
|
|
@ -2197,7 +2197,7 @@
|
|||
<name>$PROJ_DIR$\..\controllers\algo\signal_executor.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\controllers\algo\wave_chart.c</name>
|
||||
<name>$PROJ_DIR$\..\controllers\algo\wave_chart.cpp</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\controllers\algo\wave_chart.h</name>
|
||||
|
|
Loading…
Reference in New Issue