4332 views|12 replies

9702

Posts

24

Resources
The OP
 

Problems encountered in debugging the Southchip SC8721 high-efficiency synchronous buck-boost converter [Copy link]

 
 

I had some time to solder the board today. I used a 0.33R current sampling resistor because I only have this one. I used a 2K resistor for the CSO pin. I used an external resistor to set the voltage to 11V. After power-on testing, the output was normal.

However, the voltage at the CSO current detection pin should be 0.33V when the output is 1A, but the actual measurement is about 0.003V. The voltage will change with the current ratio. The difference is 100 times.

Using the microcontroller through I2C configuration, communication is normal. Try to set VOUT_SET to 50, which corresponds to 1V. Then when the internal voltage setting is enabled, the voltage becomes 5.1V, regardless of whether it is Decrement mode or Increment mode.

  buf[0] = 0x0c;//VOUT_SET_MSB = 0b1100  +  VOUT_SET_LSB =0b10 = 50 * 20mV = 1V
  buf[1] = 0x1a;//FB_SEL = 1,FB_ON = 1,FB_DIR = Increment,VOUT_SET_LSB = 0b10
  HAL_I2C_Mem_Write(&hi2c1, 0x62, 0x03, I2C_MEMADD_SIZE_8BIT,buf, 2, 0x10000);
    
    
    
  buf[0] = 0x0c;//VOUT_SET_MSB = 0b1100  +  VOUT_SET_LSB =0b10 = 50 * 20mV = 1V
  buf[1] = 0x1e;//FB_SEL = 1,FB_ON = 1,FB_DIR = Decrement,VOUT_SET_LSB = 0b10
  HAL_I2C_Mem_Write(&hi2c1, 0xC4, 0x03, I2C_MEMADD_SIZE_8BIT,buf, 2, 0x10000);

The manual mentions the VOUT_REF register but I can't find it in the list below. I'm not sure if my manual version (LiChuang Mall version) is wrong or if there's something wrong with the settings somewhere.

This post is from Domestic Chip Exchange

Latest reply

Hello, I want to ask, can this chip work without a microcontroller? Refer to the typical circuit on the datasheet completely, without a microcontroller, SCL, SDA are pulled up by default, can the over-current protection value be set by an external circuit?   Details Published on 2021-12-13 11:11
Personal signature虾扯蛋,蛋扯虾,虾扯蛋扯虾
 
 

2926

Posts

0

Resources
2
 

Where is the output capacitor???

This post is from Domestic Chip Exchange

Comments

This place [attachimg]568177[/attachimg]   Details Published on 2021-10-19 20:46
 
 
 

9702

Posts

24

Resources
3
 
tagetage posted on 2021-10-19 20:44 Where is the output capacitor? ? ?

This place

This post is from Domestic Chip Exchange
Personal signature虾扯蛋,蛋扯虾,虾扯蛋扯虾
 
 
 

2926

Posts

0

Resources
4
 

I thought it was the input capacitor. Is your board the typical circuit on the datasheet? It doesn't look like it.

This post is from Domestic Chip Exchange

Comments

I made this circuit based on the datasheet. I only had a 0.33R sampling resistor, so I used this one. I used a 2K CSO resistor. I'm not sure if the resistor is too small to drive it, causing the current monitoring voltage to be too low. The manual says the sampling resistor is 0.01R and the CSO resistor is 64K.  Details Published on 2021-10-19 21:48
 
 
 

9702

Posts

24

Resources
5
 
tagetage posted on 2021-10-19 20:53 I thought it was an input capacitor. Is your board the typical circuit on the datasheet? ? It doesn't look like it.

I made this circuit based on the datasheet. I only had a 0.33R sampling resistor so I used this one, and a 2K CSO resistor. I'm not sure if the resistance of this resistor is too small and cannot be driven, resulting in the current monitoring voltage being too low.

The sampling resistor in the manual is 0.01R and the CSO resistor is 64K.

This post is from Domestic Chip Exchange
Personal signature虾扯蛋,蛋扯虾,虾扯蛋扯虾
 
 
 

2926

Posts

0

Resources
6
 

The problem lies in the sampling resistor and CSO resistor. The CSO resistor is connected in series and parallel to 64K, and the sampling resistor is too large. According to the reference manual, a piece of iron wire or something like that is 0.01 ohm.

This post is from Domestic Chip Exchange

Comments

I didn't read the data sheet carefully, the maximum sampling resistor is 10mR and the minimum is 5mR, but there is no limit on RCSO. I bought a 10mR resistor, which is on the way. I will try it after receiving it. [attachimg]568319[/attachimg]   Details Published on 2021-10-20 09:27
 
 
 

9702

Posts

24

Resources
7
 
tagetage posted on 2021-10-20 09:20 The problem lies in the sampling resistor and CSO resistor. The CSO resistor is connected in series and parallel to 64K, and the sampling resistor is too large. According to the reference...

I didn't read the data sheet carefully, but the maximum sampling resistor is 10mR and the minimum is 5mR, and there is no limit on RCSO.

I bought a 10mR resistor, which is on the way. I will try it after receiving it.

This post is from Domestic Chip Exchange
Personal signature虾扯蛋,蛋扯虾,虾扯蛋扯虾
 
 
 

2926

Posts

0

Resources
8
 

I guess it's the sampling resistor that's at fault. If the test works, I'll tell you about it here.

This post is from Domestic Chip Exchange

Comments

OK  Details Published on 2021-10-26 12:04
OK  Details Published on 2021-10-26 11:41
OK  Details Published on 2021-10-20 18:30
 
 
 

9702

Posts

24

Resources
9
 
tagetage posted on 2021-10-20 18:09 It is probably the sampling resistor that is at fault. If the test works, I will tell you about it here.

OK

This post is from Domestic Chip Exchange
 
 
 

9702

Posts

24

Resources
10
 
tagetage posted on 2021-10-20 18:09 I guess it's the sampling resistor that's at fault. If the test works, I'll tell you about it here.

The I2C voltage regulation problem was found. It was because the LOAD register was not configured. After the function was set, this bit needed to be written as 1.

I soldered a 10mR resistor for current detection, but the voltage I measure is still incorrect.

This post is from Domestic Chip Exchange
Personal signature虾扯蛋,蛋扯虾,虾扯蛋扯虾
 
 
 

9702

Posts

24

Resources
11
 
tagetage posted on 2021-10-20 18:09 I guess it's the sampling resistor that's at fault. If the test works, I'll tell you about it here.

The current monitoring problem was also solved. I connected CSN and CSP in the wrong direction, but it worked fine after I changed it back.

This post is from Domestic Chip Exchange
Personal signature虾扯蛋,蛋扯虾,虾扯蛋扯虾
 
 
 

1

Posts

0

Resources
12
 

Hello, I want to ask, can this chip work without a microcontroller? Refer to the typical circuit on the datasheet completely, without a microcontroller, SCL, SDA are pulled up by default, can the over-current protection value be set by an external circuit?

This post is from Domestic Chip Exchange

Comments

It can work without using a microcontroller. The voltage is set by an external resistor and the current can be calculated by the default value of CSO_SET and the following formula [attachimg]577976[/attachimg]   Details Published on 2021-12-13 11:39
 
 
 

9702

Posts

24

Resources
13
 
Feeling Y posted on 2021-12-13 11:11 Hello, I would like to ask, can this chip work without a microcontroller? Refer to the typical circuit on the datasheet completely, without connecting a microcontroller, SCL, SDA default on...

It can work without using a microcontroller. The voltage is set by an external resistor and the current can be calculated by the default value of CSO_SET and the following formula

This post is from Domestic Chip Exchange
Personal signature虾扯蛋,蛋扯虾,虾扯蛋扯虾
 
 
 

Just looking around
Find a datasheet?

EEWorld Datasheet Technical Support

Featured Posts
C language uses binary tree to parse polynomials and evaluate

It mainly realizes the analysis of polynomial data calculation. If there is a need to make a simple calculator based on ...

STM8S001J3 uses HalfDuplex mode and uses IO mapping and cannot receive data.

The first time I used STM8S001J3, I mainly used UART and EEPROM. At that time, I saw that UART_TX conflicted with SWIM, ...

The disappearing boundary between MCU and MPU

There was a time when microprocessors (MPUs) and microcontrollers (MCUs) were two completely different devices. Microcon ...

Relationship between PN conduction voltage drop and current and temperature

*) , the E junction is affected by temperature, and the change in on-state voltage drop is related to Is and Ic The cond ...

Free Review - Topmicro Intelligent Display Module (5) Touch Screen

This post was last edited by wenyangzeng on 2021-11-1 16:36 Free Review - Topmicro Intelligent Display Module (5) Touch ...

View circuit - load switch

In many circuits, one power supply may correspond to multiple loads. Sometimes the power supply of the load needs to be ...

[Flower carving DIY] Interesting and fun music visualization series project (24) - infinite LED mirror light

I suddenly had the urge to do a series of topics on music visualization. This topic is a bit difficult and covers a wide ...

Common Problems in RF Circuit Design

666836 Common problems in RF circuit design 1. Interference between digital circuit modules and analog circuit modules ...

M4N-Dock basic usage environment configuration

# M4N-Dock basic usage environment configuration## Login system The default system is Debian system. Plug in the network ...

The price came out and I looked at it for more than an hour.

21.59 Did you guess it right?

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号
快速回复 返回顶部 Return list