Skip to content

Commit

Permalink
Bump stack size on control-plane-agent
Browse files Browse the repository at this point in the history
We found a crash where the stack size was 3980. This was awfully close
to 4096. 12000 is definitely a large bound but it is a safe bound.
  • Loading branch information
labbott committed Oct 2, 2024
1 parent b6e4a37 commit 756be5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/gimlet/base.toml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ notifications = ["socket"]
name = "task-control-plane-agent"
priority = 6
max-sizes = {flash = 131072, ram = 32768}
stacksize = 4096
stacksize = 12000
start = true
uses = ["usart1"]
task-slots = [
Expand Down
2 changes: 1 addition & 1 deletion app/psc/base.toml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ notifications = ["spi-irq"]
name = "task-control-plane-agent"
priority = 5
max-sizes = {flash = 131072, ram = 32768}
stacksize = 4096
stacksize = 12000
start = true
uses = []
task-slots = [
Expand Down

0 comments on commit 756be5b

Please sign in to comment.