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>
This commit is contained in:
deadprogram
2026-03-02 15:23:29 +01:00
parent f902437848
commit 394116e998
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"inherits": ["cortex-m0plus"],
"build-tags": ["rp2040", "rp"],
"scheduler": "cores",
"scheduler": "tasks",
"flash-1200-bps-reset": "true",
"flash-method": "msd",
"serial": "usb",
+1 -1
View File
@@ -1,7 +1,7 @@
{
"inherits": ["cortex-m33"],
"build-tags": ["rp2350", "rp"],
"scheduler": "cores",
"scheduler": "tasks",
"flash-1200-bps-reset": "true",
"flash-method": "msd",
"serial": "usb",