mirror of https://github.com/rusefi/wideband.git
refactoring: extract magic constant (#133)
This commit is contained in:
parent
c1057ad951
commit
4b79aa451e
|
@ -130,7 +130,7 @@ void InitCan()
|
|||
|
||||
void SendRusefiFormat(uint8_t idx)
|
||||
{
|
||||
auto baseAddress = 0x190 + 2 * idx;
|
||||
auto baseAddress = WB_DATA_BASE_ADDR + 2 * idx;
|
||||
auto esr = GetSensorInternalResistance();
|
||||
|
||||
{
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#define WB_BL_ENTER 0xEF0'0000
|
||||
#define WB_MSG_SET_INDEX 0xEF4'0000
|
||||
#define WB_MGS_ECU_STATUS 0xEF5'0000
|
||||
#define WB_DATA_BASE_ADDR 0x190
|
||||
|
||||
namespace wbo
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue