Skip to content

Commit 0abc514

Browse files
committed
targets: switch rp2040/rp2350 to default to tasks scheduler
This switches the rp2040 and rp2350 to use the tasks scheduler by default instead of using the cores scheduler. Too many race conditions at present, we need to look into exactly why. In the meantime, going back to the tasks as default will address a lot of these intermittent problems. Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent f50eccf commit 0abc514

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

targets/rp2040.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"inherits": ["cortex-m0plus"],
33
"build-tags": ["rp2040", "rp"],
4-
"scheduler": "cores",
4+
"scheduler": "tasks",
55
"flash-1200-bps-reset": "true",
66
"flash-method": "msd",
77
"serial": "usb",

targets/rp2350.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"inherits": ["cortex-m33"],
33
"build-tags": ["rp2350", "rp"],
4-
"scheduler": "cores",
4+
"scheduler": "tasks",
55
"flash-1200-bps-reset": "true",
66
"flash-method": "msd",
77
"serial": "usb",

0 commit comments

Comments
 (0)