2022-04-21 05:29 AM
We dont require any of the RF features in our use case.
Had to choose this MCU due to chip shortage. Just want a functionality of a regular STM.
Solved! Go to Solution.
2022-04-26 01:17 AM
Hello,
Yes, it's possible to disable RF core and run only application core, to disable RF core, just don't start it
by removing CPU2 initialization (appe_TL_Init and MX_IPCC_Init) in application side and initialize the CPU2 reset value to shutdown like this:
LL_C2_PWR_SetPowerMode(LL_PWR_MODE_SHUTDOWN);
Best Regards
2022-04-26 01:17 AM
Hello,
Yes, it's possible to disable RF core and run only application core, to disable RF core, just don't start it
by removing CPU2 initialization (appe_TL_Init and MX_IPCC_Init) in application side and initialize the CPU2 reset value to shutdown like this:
LL_C2_PWR_SetPowerMode(LL_PWR_MODE_SHUTDOWN);
Best Regards
2022-04-26 10:20 AM
Thanks a lot, Remy