2022-12-26 05:45 PM
I use spc58nh board.
I was using an RTOS Task On one core.
I want to use two core, and divide task into two cores.
is this possible?
for example :
core2 - task 1, task 2 --> core 1 - task 1 , core 2 - task 2
Solved! Go to Solution.
2023-02-23 08:47 AM
Hello ,
Which RTOS do you use ?
we have a nice example in SPC58xNxx_RLA TripleCore Test Application (without RTOS)
Check the application.ld (linker file)
if you want to reserve memory for a core
Best regards
Erwan
2023-02-07 04:47 PM
I did that.
core2-tas1 , task 2 --> core1 - task 1, core2 - task 2
After implementing it like that, the operation that did not work when only core2 worked when divided into core1 and core2.
I don't know if the memory of spc58nh is used separately by core1 and core2.
2023-02-23 08:47 AM
Hello ,
Which RTOS do you use ?
we have a nice example in SPC58xNxx_RLA TripleCore Test Application (without RTOS)
Check the application.ld (linker file)
if you want to reserve memory for a core
Best regards
Erwan
2023-03-06 06:59 PM
I use FreeRTOS.
thank you. I will refer to tour comments.
2024-10-01 06:40 AM