Skip to content

Commit

Permalink
Let's revert some core dependence if that's the issue on release
Browse files Browse the repository at this point in the history
  • Loading branch information
arntsonl committed Sep 16, 2024
1 parent 7783b77 commit 6b0fb29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void core1() {
gp2040Core1->setup();

// Sync Core0 and Core1
while(gp2040Core0->ready() == false ) {}
//while(gp2040Core0->ready() == false ) {}
gp2040Core1->run();
}

Expand All @@ -47,7 +47,7 @@ int main() {
multicore_launch_core1(core1);

// Sync Core0 and Core1
while(gp2040Core1->ready() == false ) {}
//while(gp2040Core1->ready() == false ) {}
gp2040Core0->run();

return 0;
Expand Down

0 comments on commit 6b0fb29

Please sign in to comment.