EFI_TEXT_LOGGING progress
This commit is contained in:
parent
f2165da28e
commit
05547be3bc
|
@ -159,12 +159,11 @@ void WaveChart::publish() {
|
|||
}
|
||||
}
|
||||
|
||||
static char timeBuffer[10];
|
||||
|
||||
/**
|
||||
* @brief Register an event for digital sniffer
|
||||
*/
|
||||
void WaveChart::addEvent3(const char *name, const char * msg) {
|
||||
#if EFI_TEXT_LOGGING || defined(__DOXYGEN__)
|
||||
if (!ENGINE(isEngineChartEnabled)) {
|
||||
return;
|
||||
}
|
||||
|
@ -234,7 +233,7 @@ void WaveChart::addEvent3(const char *name, const char * msg) {
|
|||
hsAdd(&engineSnifferHisto, diff);
|
||||
}
|
||||
#endif /* EFI_HISTOGRAMS */
|
||||
|
||||
#endif /* EFI_TEXT_LOGGING */
|
||||
}
|
||||
|
||||
void showWaveChartHistogram(void) {
|
||||
|
|
|
@ -29,6 +29,7 @@ public:
|
|||
bool isStartedTooLongAgo();
|
||||
private:
|
||||
Logging logging;
|
||||
char timeBuffer[10];
|
||||
uint32_t counter;
|
||||
efitime_t startTimeNt;
|
||||
volatile int isInitialized;
|
||||
|
|
|
@ -13,8 +13,10 @@
|
|||
#if EFI_SENSOR_CHART || defined(__DOXYGEN__)
|
||||
#include "status_loop.h"
|
||||
|
||||
#if EFI_TEXT_LOGGING || defined(__DOXYGEN__)
|
||||
static char LOGGING_BUFFER[5000] CCM_OPTIONAL;
|
||||
static Logging logging("analog chart", LOGGING_BUFFER, sizeof(LOGGING_BUFFER));
|
||||
static Logging scLogging("analog chart", LOGGING_BUFFER, sizeof(LOGGING_BUFFER));
|
||||
#endif /* EFI_TEXT_LOGGING */
|
||||
|
||||
static int pendingData = false;
|
||||
static int initialized = false;
|
||||
|
@ -22,6 +24,7 @@ static int initialized = false;
|
|||
extern engine_configuration_s *engineConfiguration;
|
||||
|
||||
void scAddData(float angle, float value) {
|
||||
#if EFI_TEXT_LOGGING || defined(__DOXYGEN__)
|
||||
if (!initialized) {
|
||||
return; // this is possible because of initialization sequence
|
||||
}
|
||||
|
@ -45,10 +48,10 @@ void scAddData(float angle, float value) {
|
|||
* data after we have added some data - meaning it's time to flush
|
||||
*/
|
||||
// message terminator
|
||||
appendPrintf(&logging, DELIMETER);
|
||||
appendPrintf(&scLogging, DELIMETER);
|
||||
// output pending data
|
||||
if (getFullLog()) {
|
||||
scheduleLogging(&logging);
|
||||
scheduleLogging(&scLogging);
|
||||
}
|
||||
pendingData = false;
|
||||
}
|
||||
|
@ -56,14 +59,15 @@ void scAddData(float angle, float value) {
|
|||
}
|
||||
if (!pendingData) {
|
||||
pendingData = true;
|
||||
resetLogging(&logging);
|
||||
resetLogging(&scLogging);
|
||||
// message header
|
||||
appendPrintf(&logging, "analog_chart%s", DELIMETER);
|
||||
appendPrintf(&scLogging, "analog_chart%s", DELIMETER);
|
||||
}
|
||||
|
||||
if (remainingSize(&logging) > 100) {
|
||||
appendPrintf(&logging, "%.2f|%.2f|", angle, value);
|
||||
if (remainingSize(&scLogging) > 100) {
|
||||
appendPrintf(&scLogging, "%.2f|%.2f|", angle, value);
|
||||
}
|
||||
#endif /* EFI_TEXT_LOGGING */
|
||||
}
|
||||
|
||||
static void setSensorChartFrequency(int value) {
|
||||
|
|
Loading…
Reference in New Issue