大家好
想請教一下
有沒有人嘗試在core0使用camera pipe
並在core1使用memory pipe呢(使用debug)?
camera pipe和memory pipe都在core0使用時可以這常運作
但是在把memory pipe在core1執行卻會出錯(錯誤碼為0x0000005=>handler有問題)
另外如果在core0宣告一個簡單的函式
內容只有printf
在core1呼叫該函式時
console看不到東西
(在core0呼叫該函式可以正常地看到printf的內容)
下面為程式大致的內容
Core0的程式1.core0_function.c 內容如下#pragma section("sdram_bank0")
void test_printf(void)
{
printf("test");
}
2.core0_function.h 內容如下extern void test_printf(void);
Core1的程式core1_main.c內容如下#include
"core0_function.h"
void main()
{ test_printf();
}
「该帖子被 kainonex 在 2016-11-24 23:12:12 编辑过」