Skip to content
Snippets Groups Projects
Verified Commit 904851ab authored by rahix's avatar rahix
Browse files

fix(api): Fix API overlapping core 1 stack


Core 1 has its stack base at 0x20080000 which would overlap with the
first byte of the API parameter space.  This patch moves the API further
back to prevent any weird behaviours being caused by this.

Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 6510d8dd
No related branches found
No related tags found
No related merge requests found
......@@ -43,4 +43,4 @@ struct api_call_mem {
/* TODO: Make this address part of the linker script */
static __attribute__((unused)) struct api_call_mem* API_CALL_MEM =
(struct api_call_mem*)0x20080000;
(struct api_call_mem*)0x20080010;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment