extracting magic constant

only:uaefi121
This commit is contained in:
rusefillc 2024-08-18 01:19:59 -04:00
parent bac314b999
commit 0e08b3ef5c
1 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,9 @@
static constexpr uint32_t aem_base = 0x180;
static constexpr uint32_t rusefi_base = WB_DATA_BASE_ADDR;
// "silent" of wboFaultCodeList
#define HACK_SILENT_VALUE 1
AemXSeriesWideband::AemXSeriesWideband(uint8_t sensorIndex, SensorType type)
: CanSensorBase(
0, // ID passed here doesn't matter since we override acceptFrame
@ -15,7 +18,7 @@ AemXSeriesWideband::AemXSeriesWideband(uint8_t sensorIndex, SensorType type)
)
, m_sensorIndex(sensorIndex)
{
faultCode = 1;// silent, initial state is "no one has spoken to us so far"
faultCode = HACK_SILENT_VALUE;// silent, initial state is "no one has spoken to us so far"
}
bool AemXSeriesWideband::acceptFrame(const CANRxFrame& frame) const {