I am using dual-core Cortex-A9 in a project where 1 core is enough.
How to switch off another unused core?
Hi gxk,
In our dual core board, we choose the core through the following steps. hope that it will give you some help~
echo '0' >/sys/devices/system/cpu/cpu1/online
you can close the second coreecho '1' >/sys/devices/system/cpu/cpu1/online
then you can open the second core~
B&R
Hedy