Skip to content

Commit

Permalink
set stack size to 2000
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBoehm committed Aug 11, 2024
1 parent e8765f8 commit db1df5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Huawei_can.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ void HuaweiCanClass::updateSettings(uint8_t huawei_miso, uint8_t huawei_mosi, ui
_mode = HUAWEI_MODE_AUTO_INT;
}

xTaskCreate(HuaweiCanCommunicationTask,"HUAWEI_CAN_0",1000,NULL,0,&_HuaweiCanCommunicationTaskHdl);
xTaskCreate(HuaweiCanCommunicationTask,"HUAWEI_CAN_0",2000,NULL,0,&_HuaweiCanCommunicationTaskHdl);

MessageOutput.println("[HuaweiCanClass::init] MCP2515 Initialized Successfully!");
_initialized = true;
Expand Down

0 comments on commit db1df5b

Please sign in to comment.