CANBus broken in v4.1-beta2 in release mode [IDFGH-3729]
Posted: Sun Jul 26, 2020 12:48 pm
CANBus does not work at all in C4.1-beta2 in release mode due to numerous assert statements having been changed such as this one:
In V4.0 this was:
There are about 8 similar problems in this file.
Code: Select all
assert(can_hal_start(&can_context, p_can_obj->mode));
Code: Select all
esp_err_t err = can_enter_reset_mode(); //Should already be in bus-off mode, set again to make sure
assert(err == ESP_OK);