refactoring: extract magic constant (#133)

This commit is contained in:
rusefillc 2022-08-10 01:59:36 -04:00 committed by GitHub
parent c1057ad951
commit 4b79aa451e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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();
{

View File

@ -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
{