cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to disable RF core and run only application core in STM32WBXX mcus ?

vg13
Associate

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.

  1. Can we just use application core independently ?
  2. Is it possible to disable RF (Bluetooth radio ) completely and run the other core ?
  3. Please advise.

1 ACCEPTED SOLUTION

Accepted Solutions
Remy ISSALYS
ST Employee

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

View solution in original post

2 REPLIES 2
Remy ISSALYS
ST Employee

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

Thanks a lot, Remy