Modules | |
fifo | |
Functions for the inter-core FIFOs. | |
lockout | |
Functions to enable one core to force the other core to pause execution in a known state. | |
Functions | |
void | multicore_reset_core1 (void) |
Reset core 1. More... | |
void | multicore_launch_core1 (void(*entry)(void)) |
Run code on core 1. More... | |
void | multicore_launch_core1_with_stack (void(*entry)(void), uint32_t *stack_bottom, size_t stack_size_bytes) |
Launch code on core 1 with stack. More... | |
void | multicore_launch_core1_raw (void(*entry)(void), uint32_t *sp, uint32_t vector_table) |
Launch code on core 1 with no stack protection. More... | |
Adds support for running code on the second processor core (core 1)
void multicore_launch_core1 | ( | void(*)(void) | entry | ) |
Run code on core 1.
Wake up (a previously reset) core 1 and enter the given function on core 1 using the default core 1 stack (below core 0 stack).
core 1 must previously have been reset either as a result of a system reset or by calling multicore_reset_core1
core 1 will use the same vector table as core 0
entry | Function entry point |
void multicore_launch_core1_raw | ( | void(*)(void) | entry, |
uint32_t * | sp, | ||
uint32_t | vector_table | ||
) |
Launch code on core 1 with no stack protection.
Wake up (a previously reset) core 1 and start it executing with a specific entry point, stack pointer and vector table.
This is a low level function that does not provide a stack guard even if USE_STACK_GUARDS is defined
core 1 must previously have been reset either as a result of a system reset or by calling multicore_reset_core1
entry | Function entry point |
sp | Pointer to the top of the core 1 stack |
vector_table | address of the vector table to use for core 1 |
void multicore_launch_core1_with_stack | ( | void(*)(void) | entry, |
uint32_t * | stack_bottom, | ||
size_t | stack_size_bytes | ||
) |
Launch code on core 1 with stack.
Wake up (a previously reset) core 1 and enter the given function on core 1 using the passed stack for core 1
core 1 must previously have been reset either as a result of a system reset or by calling multicore_reset_core1
core 1 will use the same vector table as core 0
entry | Function entry point |
stack_bottom | The bottom (lowest address) of the stack |
stack_size_bytes | The size of the stack in bytes (must be a multiple of 4) |
void multicore_reset_core1 | ( | void | ) |
Reset core 1.
This function can be used to reset core 1 into its initial state (ready for launching code against via multicore_launch_core1 and similar methods)