mirror of https://github.com/rusefi/wideband.git
43 lines
758 B
C
43 lines
758 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <rusefi/fragments.h>
|
|
|
|
#include "wideband_config.h"
|
|
|
|
/* +0 offset */
|
|
struct livedata_common_s {
|
|
union {
|
|
struct {
|
|
float vbatt;
|
|
};
|
|
uint8_t pad0[32];
|
|
};
|
|
};
|
|
|
|
/* +32 offset */
|
|
struct livedata_afr_s {
|
|
union {
|
|
struct {
|
|
// lambda also displayed by TS as AFR, same data with different scale factor
|
|
float lambda;
|
|
uint16_t temperature;
|
|
uint16_t padding;
|
|
uint16_t nernstDc;
|
|
uint16_t nernstAc;
|
|
float pumpCurrentTarget;
|
|
float pumpCurrentMeasured;
|
|
uint16_t heaterDuty;
|
|
uint16_t heaterEffectiveVoltage;
|
|
float esr;
|
|
uint8_t fault; // See wbo::Fault
|
|
uint8_t heaterState;
|
|
} __attribute__((packed));
|
|
uint8_t pad[32];
|
|
};
|
|
};
|
|
|
|
/* update functions */
|
|
void SamplingUpdateLiveData();
|