-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Milestone
Description
void draw_screen()
{
multicore_lockout_victim_init();
while(1)
{
// in the actual application, I'm doing some i2c work here, but this code also fails.
tight_loop_contents();
}
}
int main()
{
stdio_init_all();
multicore_launch_core1(draw_screen);
sleep_ms(100);
multicore_lockout_start_blocking();
multicore_lockout_end_blocking();
}
with the above code, I'm getting the following assertion failure:
assertion "us_since_boot <= INT64_MAX" failed: file "C:\Users\...\pico-sdk\src\common\pico_base\include/pico/types.h", line 63, function: update_us_since_boot
I'm on sdk 1.3, and using pico probe to debug... at some point, this code was running for me.
Metadata
Metadata
Assignees
Labels
No labels