dual_rp¶
Run code on the second core of your RP2040.
-
void c1_main(void)¶
[source] Entrypoint of the second core.
- Its default implementation is:
Wait for first core to setup ChibiOS
Run
c1_init_kb
andc1_init_user
In an endless loop, run
c1_main_kb
andc1_main_user
However, it is defined weakly, you can overwrite it.
Caution
If you do so, the functions mentioned above will no longer be called.