This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
我自己封装了接口,可以在main()函数中实现local reset,core可在reset后再次启动运行;
我通过task_create()创建一个任务,在该任务的入口函数中调用之前的local reset接口,bios_start()后任务正常运行,但core在reset后没有再次启动运行,同样的接口在main()中调用就正常,请问问题可能出现在哪里?谢谢!!
感谢您的回复,我自己封装的localreset接口中确实会设置core的DSP_BOOT_ADDR寄存器,每个core的启动地址是固定的,为0x1X800000,其中X对应的是core的ID号,请问我该如何修改我的接口才能在bios_start后让core重新运行?