Hi @Andrew101,
If you have the peripheral's clock gated in the Clocks GUI, the register should be updated to 1 after calling Clock_Ip_Init(). To do it manually, you must add the "Power" component to the project, and individually enable the clocks in the McuPeripheral tab:


After this, you also need to call the initialization and set mode functions:
Power_Ip_Init(&Power_Ip_HwIPsConfigPB);
Power_Ip_SetMode(&Power_Ip_aModeConfigPB[0]);
Best regards,
Julián