How to enable to using multicore at MPC5688.

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

How to enable to using multicore at MPC5688.

1,136 次查看
jinhokim
Contributor I

Hi everybody, I have some questions.

 

We used to single-core at MPC5688. But, we want to using multi-core.

 

So, We want to know that how to enable to using multi-core.

 

Thanks & Regards

标签 (1)
0 项奖励
回复
1 回复

1,058 次查看
davidtosenovjan
NXP TechSupport
NXP TechSupport

If you use CodeWarrior stationery, enabling of second core is contained in the code. It is just needed to check z0 core in the project wizard.

CW_multicore.png

In the main routine second core is being started by following:

/* Start the other core by writing CRP.Z0VEC.R */

  1. CRP.Z0VEC.R = (unsigned long)__start_p1;

File __start_p1.c then contains necessary startup for second core and then it jumps into main_p1 routine.

0 项奖励
回复