mirror of https://github.com/rusefi/wideband.git
can: avoid stack overflow
This commit is contained in:
parent
99808e0de9
commit
6f15807902
|
@ -43,7 +43,7 @@ static void SendAck()
|
||||||
static HeaterAllow heaterAllow = HeaterAllow::Unknown;
|
static HeaterAllow heaterAllow = HeaterAllow::Unknown;
|
||||||
static float remoteBatteryVoltage = 0;
|
static float remoteBatteryVoltage = 0;
|
||||||
|
|
||||||
static THD_WORKING_AREA(waCanRxThread, 256);
|
static THD_WORKING_AREA(waCanRxThread, 512);
|
||||||
void CanRxThread(void*)
|
void CanRxThread(void*)
|
||||||
{
|
{
|
||||||
while(1)
|
while(1)
|
||||||
|
|
Loading…
Reference in New Issue