Skip to content

Commit

Permalink
fix: fix sign tx crash
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhenQian committed Dec 9, 2024
1 parent bd07793 commit a4dd24c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/tasks/background_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void CreateBackgroundTask(void)
{
const osThreadAttr_t backgroundTask_attributes = {
.name = "BackgroundTask",
.stack_size = 1024 * 4,
.stack_size = 1024 * 8,
.priority = (osPriority_t)osPriorityBelowNormal,
};
g_backgroundTaskHandle = osThreadNew(BackgroundTask, NULL, &backgroundTask_attributes);
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/data_parser_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void CreateDataParserTask(void)
{
const osThreadAttr_t dataParserTask_attributes = {
.name = "data_parser_task",
.stack_size = 1024 * 32,
.stack_size = 1024 * 36,
.priority = (osPriority_t)osPriorityHigh,
};
g_dataParserHandle = osThreadNew(DataParserTask, NULL, &dataParserTask_attributes);
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/ui_display_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void CreateUiDisplayTask(void)
{
const osThreadAttr_t testtTask_attributes = {
.name = "UiDisplayTask",
.stack_size = 1024 * 16,
.stack_size = 1024 * 24,
.priority = (osPriority_t) osPriorityHigh,
};
g_uiDisplayTaskHandle = osThreadNew(UiDisplayTask, NULL, &testtTask_attributes);
Expand Down

0 comments on commit a4dd24c

Please sign in to comment.