Skip to content

Commit

Permalink
bricks/move_hub: Increase stack size.
Browse files Browse the repository at this point in the history
Since 1K is used for emergencies, there was only 1K for MicroPython, which is on the low side.

See pybricks/support#713
  • Loading branch information
laurensvalk committed Aug 30, 2022
1 parent d31d6ce commit 1227529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bricks/movehub/move_hub.ld
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ MEMORY
}

"MAGIC_OFFSET" = 0x100;
_stack_size = 2K;
_stack_size = 3K;
_pbdrv_block_device_storage_start = ORIGIN(USER_FLASH);
_pbdrv_block_device_storage_size = LENGTH(USER_FLASH);

0 comments on commit 1227529

Please sign in to comment.