cancel
Showing results for 
Search instead for 
Did you mean: 

If I want to use UCPD2 in STM32G0B1RCT6, is HSI16 the only choice as the driving clock for this integrated PD controller? May i use HSE?

Lmatt.11
Associate III

In my application, UCPD2 will be active for USB type C PD Sink (45W), which will be working together with other peripherals, such as timers, USB(DEVICE), etc.

 0693W00000HoVNTQA3.pngIf the driving clock for UCPD2 is HSI16(in datasheet described), if no other choice, that means i have to use the HSI clock source for the whole projects. That means there are no chance to choose HSE. Is that correct?

But actually, PD is only a part of the system, not the whole in my application. Could you please gibe me some suggestions?

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
Peter BENSCH
ST Employee

The following statement can be found in RM0444, section 38.4.2 for the clocks for UCPD:

The register section is clocked with the APB clock (ucpd_pclk).

The main functional part of the transmitter is clocked with ucpd_clk clock, pre-scaled from the ucpd_ker_ck (HSI16) clock according to the PSC_USBPDCLK[2:0] bitfield of the UCPD_CFGR1 register.

The main functional part of the receiver is clocked with the ucpd_rx_clk recovered from the incoming bitstream.

Does this answer your question?

Regards

/Peter

In order to give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

View solution in original post

3 REPLIES 3
Muhammed Güler
Senior III

From the Clock Config page in CubeMX, you can choose which hardware will use which frequency and source. Both SYSCLK and USBCLK should be fed with HSE + PLL. You don't have to use HSI.

Peter BENSCH
ST Employee

The following statement can be found in RM0444, section 38.4.2 for the clocks for UCPD:

The register section is clocked with the APB clock (ucpd_pclk).

The main functional part of the transmitter is clocked with ucpd_clk clock, pre-scaled from the ucpd_ker_ck (HSI16) clock according to the PSC_USBPDCLK[2:0] bitfield of the UCPD_CFGR1 register.

The main functional part of the receiver is clocked with the ucpd_rx_clk recovered from the incoming bitstream.

Does this answer your question?

Regards

/Peter

In order to give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

@Peter,

Thanks a lot for your info..

I also saw this, that means the HSI must be enable, if not the PD controller will not work normally.

0693W00000HoVyPQAV.png I worried about the stability when the HSI running in high temperature, for example nearby the higher limit of range(-40°C to 85°C/105°C/125°C, the operating temperture for STM32g0b1rc). For the device may work in a high temperature circumstance.

But have no choice, hope it's superfluous😊.

Thanks again.