cancel
Showing results for 
Search instead for 
Did you mean: 

fatal error: usbpd_ADC_SNK.h: No such file or directory

Robert7
Associate II

Hello,

I try to build a 'PDO SINK' project on B-U585I-IOT02A and I have watched the video How to build an USBPD Sink application using the X-Cube-TCPP software pack - YouTube.

Issue:

After build project on STM32CubeMX 6.12.0 and opened project in STM32CubeIDE 1.13.2, there is errors shows '../TCPP/App/app_tcpp.h:26:10: fatal error: usbpd_ADC_SNK.h: No such file or directory'.

Could you please review attached screenshot and let me know if there is something I'm missing in my project setup.

Best regards,

RobertNew Project.pngSoftware_Packs_Componment.JPGUCPD1.JPGdebug_err1.JPG

11 REPLIES 11

Hello Pascal,

I got another issue during STM32U5+TCPP03-M20 source application test. I want to ask your help.

I use STM32U5+TCPP03-M20 with UCPD interface, and the external protection circuit is to merge consumer and provider paths in a single bi-directional(bi-MOSFET pair) power path. There is one USB-C PD connector for both 5v/9v/12v power(SINK application) adapter and 300mA fan load(SOURCE application, Ra=5.1k).

image.png

 

The TCPP03-M20 datasheet(8.3) provides an example of a combined source/sink path using two Schottky diodes and a 1M resistor. According to the datasheet, I have built the 5V1A SOURCE.

The issue has been found during the SOURCE application test:

1) With the 300mA load connected(see below table #1), the VBUS voltage drops from 5v to 1.78V after bi-MOSFET pair.  TCPP03-M20 status: Reg1=0x1c, Reg2=0x20, GDCG=4.530v, GDPG=4.525V, PD_VCONN=3.3V, PD_ENABLE=3.3V, PD_FLGN=3.3V

2) When I write 0x14 to Reg0, the Reg1 read stays at 0x18.

 

#

PD_

VCONN

(V)

PD_

ENABLE

(V)

PD_

FLGN

(V)

SRC_load

(mA)

Q1a_D

(V)

Q1b_D

(V)

Reg1

Reg2

GDC

(V)

GDP

(V)

R48

(V)

VBUS_Z

(V)

1

3.3

3.3

3.28

300

 

5

1C

20

4.530

4.525

1.922

1.784

2

3.3

3.3

3.28

300

 

5

10

20

 

 

2.471

4.983

3

3.3

3.3

3.28

300

 

 

1C

00

0

0

0

0

4

3.3

3.3

3.28

 

 

5

20

00

0

0

0

0

5

3.3

3.3

3.28

 

5

 

00

20

8.150

8.159

3.45

4.982

6

3.3

3.3

3.28

 

5

 

20

20

8.162

7.798

3.45

4.987

7

3.3

3.3

3.28

 

 

 

20

00

0

0

0

0

image.png

I have several questions if you could help me:

1) Is it possible to change the TCPP03-M20 library BSP code to allow using the sourcing gate setting for both sourcing and sinking?

2 Is it possible to turn on/off both GDCG and GDPG at the same time? For example, write 0x18 or 0x14 to Reg0?

3) Is it possible to disconnect one of GDCG and GDPG, only using GDCG or GDPG to turn on/off the bi-MOSFET pair path?

Any feedback would be very appreciated.

Best regards,

Robert Li
Senior Test Engineer | Clarius Mobile Health

 

Hi Robert,

Thanks for sharing your case.

 

My usual I2C requests are :

0x00 : hibernate --> only consumer path active / no CC

0x10 : normal mode / consumer --> only consumer path active / CC active

0x1C : normal mode / provider --> only consumer path active / CC active

0x18 : normal mode / no Vbus --> no path active / CC active

 

0x14 to close consumer and provider paths is forbidden by HW (no change as you observed) to prevent any leakage from provider to consumer path.

 

It is not possible to use provider MOSFET (Q2 on X-NUCLEO-DRP1M1) to drive bi-directional power path when the system is not powered because only the consumer path is active by default to power-up the system.

We do not recommend using consumer MOSFET (Q1 on X-NUCLEO-DRP1M1) to drive bi-directional power path because OCP will not be functional when provider because TCPP03-M20 internal high side amplifier must be ‘oriented’ according to the use case (consumer / provider). OCP when provider is mandatory to protect the system against a defective SINK product (short circuit as example).

 

According to the behavior of the system, it seems that MOSFET (STL40DN3LLH5) are in linear mode instead of saturation mode.

R48 = 2V confirms that point. Just a warning when performing the source to gate voltage measurement. Multimeter impedance on voltmeter mode must be very high impedance else gate driver current may shunt the current of the gate driver.

Indeed, gate driver current is around 15µA on short circuit.

5µA  on R48 (1 MOhm) does not impact the normal behavior of the MOSFET because 10µA can drive the gate capacitance.

Voltage drop of the BAT30F4 (Schottky diode) is less than 0.2V according to figure 4 of the datasheet. It is negligible.

 

May be there is a leakage somewhere that limits the gate driver.

No Vgs measurement to avoid performance degradation induce by multimeter leakage.

Next, I would recommend checking around gate driver:

  • Increase R48 to 5 MOhm
  • No R48, no D6, short instead of D5 : only provider gate driver
  • No R48, no D5, short instead of D6 : only consumer gate driver
  • No D6 (D5 and R48 mounted): only provider gate driver merge
  • No D5 (D6 and R48 mounted): only consumer gate driver merge

To identify / understand the MOSFET unexpected behavior.

 

Hope, it helps. Let me know,

Best regards,

Mathieu