Quantcast
Channel: Forums - Recent Threads
Viewing all 262198 articles
Browse latest View live

UCC28910: UCC28910DR

$
0
0

Part Number:UCC28910

Dear Team,

We are having plan to implement the 700V flyback switcher with constant -voltage constant currretn and primary side control solution with having the P/N# UCC28910DR

Please share the datasheet of the transformer used in UCC28910DR design.

In the reference design, transformer part mentioned is 750313739 in this datsheet they have not mentioned about core and winding details,

Hence share those details ASAP.


We are requesting with you to share the core and winding details for the transformer part # 750313739 to implement the UCC28910DR design in out Home automation project where we are looking for 3.5W to 5W power rating . 

Regards,

Hemantha Kumara N K


BQ27411-G1: I cann't program OTP of bq27411 successfully.

$
0
0

Part Number:BQ27411-G1

I  configured my  bq27411 with  typical  values and  changed  Taper voltage to  2.75V ,  Design  voltage  to  4900mAh,  Design  energy to   18130。

And  I calibrate  the  bq27411 ,complete the learning cycle,  export  a .otfs file.

Using  EV2300  and  smartflash V0.7.0 ,   I   manually  turn on the  7.4 power  and  remove  the  7.4V power。

SmartFlash  shows :

The  OTP  cann't  be  programed  successfully

And  I  opened  bqStudio,  The  chip  cann't be  detected  afterwards.

what's  wrong?

SN65DPHY440SS: Connect problem

AWR1642: mmWave distance measurement application in drone

$
0
0

Part Number:AWR1642

Hi  Team,

    Are there some success stories that mmWave distance measurement application in drone? 

    max range 200m,range resolution 10cm, are there some parts will suitable the  requirement in the future?

LM3481: The Vcc voltage of LM3481

$
0
0

Part Number:LM3481

Hi team,

I have used LM3481 IC in my flyback design

the datasheet said "The internal bias of the LM3481 comes from either the internal bias voltage generator as shown in the block diagram or directly from the voltage at the VIN pin. At input voltages lower than 6 V the internal IC bias is the input voltage and at voltages above 6 V the internal bias voltage generator of the LM3481 provides the bias. "

I find when the supply voltage is above 6V,for example 18V, the Vcc of LM3481 is 5.3V. I confuse about this sentence that the internal bias voltage generator of the LM3481provides the bias. The Vcc should be how many is ok, when the supply voltage is above 6V?

TMS320F28069M: motion variable question. what does ROMax mean and where is definition ?

$
0
0

Part Number:TMS320F28069M

Hi Champs,

My customer asked about STPOSCTL_setPositionReference_mrev(ST_POSCTL_Handle handle, _iq24 posRef) usage. I checked it's definition and found posRef range is between [-ROMax, ROMax]. I tried to find ROMax definition but I can't find it. I checked  TRM and table 3-14 show cfg structure. However, it didn't show ROMax variable. I also search whole motoware and I didn't find any ROMax definition. I guess ROMax value is same as cfg.ROMax_erev. But I am nor sure. Could anyone help me to check where is ROMax value define ? thanks

CSD19534Q5A: Inquery for CSD19534Q5A maximum Safe Operating Area

$
0
0

Part Number:CSD19534Q5A

Hello team,

I have a question about the  maximum Safe Operating Area of CSD19534Q5A.
On page6 in the CSD19534Q5A. datasheet, The Fugure10 maximum Safe Operating Area is drawn.
I would like ot know the temperature consition about Figure10. Is it Ta=25C condition, or not?
Would you please advise?

Best Regards,
Akihisa Tamazaki

TMS320C5505: Multichannel adc in tms320c5505

$
0
0

Part Number:TMS320C5505

Dear sir,

i am taking two different signals to adc channels , set the sampling frequency 51200Hz since i want to read only 1024 samples at a time for one cycle as per calculation for fft calculation..i am getting data for one channel but the problem is when i read two channels at time i get the mixed data of two channels..i dont understan whats going wrong..following is my code:

/*===============================================================================================================================================================*/
void Init_SAR_ch3(void)
{

*SARCTRL = 0x7000; //clear the channels
*SARCTRL |= 0x3800; // Select AIN3 ch3, which is GPAIN1

*SARCLKCTRL = 0x0032; //100MHz/61=1.639344MHz/32=51229Hz //0x17D7; // 100MHz/6103 = 16385Hz/32=512Hz
*SARPINCTRL = 0x7104; //Bandgap-Based Reference Voltage set to 0.8V.
*SARGPOCTRL = 0;
return;
}
/*===============================================================================================================================================================*/
void Init_SAR_ch5(void)
{

*SARCTRL = 0x7000; //clear the channels
*SARCTRL |= 0x5800; //select ch5, GPAIN3
*SARCLKCTRL = 0x0032; //100MHz/61=1.639344MHz/32=51229Hz //0x17D7; // 100MHz/6103 = 16385Hz/32=512Hz
*SARPINCTRL = 0x7104; //Bandgap-Based Reference Voltage set to 0.8V.

*SARGPOCTRL = 0;
return;
}
/*===============================================================================================================================================================*/
double Read_GPAIN1_CH3(void)
{
Int32t val=0;
Uint16t i;double adcData;

*SARCTRL = 0xB800; // Select AIN3 ch3, which is GPAIN1

{
/*for(i=0;i<50; i++)
asm(" nop");*/
val = *SARDATA;
//val=(val/1023)*vref;
if((val&0x8000) == 0)
{
break;
}
}

return val;

}
/*==============================================================================================================================================================*/
double Read_GPAIN1_CH5(void)
{
Int32t val1=0;
Uint16t i;double adcData;

*SARCTRL = 0xD800; //for ch5 continuous conv

while(1)

{

val1 = *SARDATA;

if((val1&0x8000) == 0)
{
break;
}
}


return val1;

}
/*===============================================================================================================================================================*/

/*===============================================================================================================================================================*/
interrupt void gpt0Isr(void)
{
/* Clear Timer Interrupt Aggregation Flag Register (TIAFR) */
CSL_SYSCTRL_REGS->TIAFR = 0x01;
bit_set=1;

}

/*===================================================================================================================================================*/

int main(void)
{

// Uint16 err = 1;
fft_flag = FFT_FLAG;
scale_flag =SCALE_FLAG;

SYS_PCGCR1=0; //INIT clock
SYS_PCGCR2=0; //INIT clock
SYS_EXBUSSEL = 0x0A00;
*(ioport volatile unsigned *)0x0001 = 0x000E;
asm(" idle"); // must add at least one blank before idle in " ".//HWAFFT init

Init_SAR_ch3(); //ADC init

Delay(100);
Init_SAR_ch5(); //ADC init

Timer0_Init();
i=0;j=0;
while(1)
{

if(bit_set==1 &&i<DATA_LEN_1024)
{

adcOutCh3[i]=Read_GPAIN1_CH3();
adcOutCh5[i]=Read_GPAIN1_CH5();
i++;
bit_set=0;
}
if(i==DATA_LEN_1024)
break;

}
Timer0_Stop();

}

/*===============================================================================================================================================================*/
Int16 Timer0_Init(void)
{

/* Open the CSL GPT module */
hGpt = GPT_open (GPT_0, &gptObj, &status);

/* Reset the GPT module */
status = GPT_reset(hGpt);

/* Clear any pending interrupts */
IRQ_clearAll();

/* Disable all the interrupts */
IRQ_disableAll();

IRQ_setVecs((Uint32)(&VECSTART));
IRQ_plug(TINT_EVENT, &gpt0Isr);
IRQ_enable(TINT_EVENT);

hwConfig.autoLoad = GPT_AUTO_ENABLE;
hwConfig.ctrlTim = GPT_TIMER_ENABLE;
hwConfig.preScaleDiv = GPT_PRE_SC_DIV_1;
//for 1ms


hwConfig.prdLow = 0x01d6; // 0x00017d78 for 3.9ms=1/256Hz
hwConfig.prdHigh = 0x0000;


/* Configure the GPT module */
status = GPT_config(hGpt, &hwConfig);

/* Enable CPU Interrupts */
IRQ_globalEnable();

/* Start the Timer */
GPT_start(hGpt);
return (CSL_TEST_PASSED);
}
/*===============================================================================================================================================================*/


RTOS/AM5728: RTOS timer configuration statically issue

$
0
0

Part Number:AM5728

Tool/software:TI-RTOS

Hi all 

I try to configure DSP timer statically using script:

and then a error reported:

There are more than one cpp source file in my project.how can I resolve this problem?

Best Regards 

Yx

Linux/CC1312R: Software reference code for Linux gateway

$
0
0

Part Number:CC1312R

Tool/software: Linux

Hi, 

Both TI-15-4-STACK-GATEWAY-LINUX-SDK and tidep0084

What's the difference between these two packages ? 

For example, in /collector/appsrv.c, two packages use different ways to exchange data between collector and gateway appsrv client.

Besides, source code update are inconsistent.

The latest TI-15-4-STACK-GATEWAY-LINUX-SDK is version 2.05.00.11 released on 18 Apr 2018, while the latest update of tidep0084 is still on March 05 2018.

I am wondering to know which package is officially maintained by TI ?

TPS55330: WEBENCH® Tools/TPS55330 : Vin:9V-15V; output: 14V/0.5A simluation report

$
0
0

Part Number:TPS55330

Dear,


out client want to design TPS55330, and we try WEBNCH tool,

Vin:9V-14V ; output: 15V/0.5A ; it`s okay ;  but  Vin:9V~15V ; output:15V/0.5A it`s cannot print schematic.


it`s does not cannot meet?

If any suggestion, Please advise me.

Thanks,

Best regards,

Lawrence.

TMS320F28375S: What is the best thing to do with unused pins

$
0
0

Part Number:TMS320F28375S

Hi,

we're planning to use TMS320F2837 for our development purposes. I have one question regarding the schematic/layout preferences for the unused pins. Datasheet says unused GPIO pins can be left open (output with internal pull-up disabled)/ input mode with internal pull-up enabled. Wanted to understand what is the best thing to do? Is it ok to set those as output pins and leave it open to avoid so many connections and components on board?

Also, what about unused address pins,DQM pins from EMIF & unused PWM/Quadrature encoder module pins. can these also simply left open?

Thanks in advance.

Thanks & Regards

Muthu A

TDA2: where can i get vsdk_win64

$
0
0

Part Number:TDA2

I'm trying to generate usecase by using generator

I installed the lastest version of vision sdk(ver3.30) though, I can't find vsdk_win64.exe

The only thing I can find is vsdk_win32.exe, and it does not compitible with my OS...

where can i get vsdk_win64.exe ?

CC3200-LAUNCHXL: Enclosing with external antenna

$
0
0

Part Number:CC3200-LAUNCHXL

Has anyone successfully enclosed a CC3200 LaunchPad board in a plastic box and used an external antenna? I've modified the LaunchPad by re-locating the antenna resistor (R111/R110) to divert antenna selection from antenna chip to the external antenna jack (J18). The board seems to work fine in open air, but when put inside the plastic enclosure (Bud Box), it quits working.

I noticed, as others have posted, that even when the 0-OHM removed, wifi signal can still be picked up by the antenna chip - of course with much lower signal strength. When the 0-Ohm restore is placed in the path of the external antenna (J18 - u.fl), the signal strength jumps up. So clear evidence that the "external antenna" is "working" but the board fails to connect to wifi when put inside the enclosure...

I'm now wondering if this board is intended to go inside an enclosure if the antenna chip can't be isolated completely.

Any input from a successful user is HIGHLY welcome.

Thanks,

Jim

BQ24735: Not showing voltage in ILIM PIn

$
0
0

Part Number:BQ24735

Hi 

   we are using BQ24735 Battery management IC in our system for Lithium ion Battery charging. we are getting 800mv at ILIM Pin. but in our previous batch we got 2.08V in ILIM. please let us know what is the exact voltage we should get in ILIM Pin. 

Also please suggest in BQ24735 any feedback signal available for knowing battery connected or not with system.

Regards

Shaithanya C


CCS/TMS320F28069: Sine Wave Modulated PWM

$
0
0

Part Number:TMS320F28069

Tool/software: Code Composer Studio

I would like to know how to generate three phase sine pwm. I have sensed three phase grid signals using ADC, and would like to know how to proceed further. Any code that does the same would be helpful.

TMS320F28375S: TRST signal connection in TMS320F2837

$
0
0

Part Number:TMS320F28375S

Hi,

I have one question regarding the usage of TRST pin in JTAG. Usually with other controllers to ensure complete hardware reset, TRST needs be asserted at power-up and whenever RESET is asserted (for ex: RESET issued from voltage supervisor is also fed into this). Do we need to do that in TMS320F2837 as well?

But the datasheet doesn't mention this explicitly. If this pin is LOW, device is functional & when driven HIGH, gives the scan system control of the operations (doesn't seem to be RESETing the JTAG TAP controller)

could anyone please help me with the TRST connection. should this be involved in RESET (or) I can pull it down with 2.2k all the time

Thanks in advance

Thanks & Regards

Muthu A

TLC5955: Display timing reset?

$
0
0

Part Number:TLC5955

I have some questions regarding the use of the "Display Timing Reset" feature of the TLC5955.

1. It is my understanding that, in order to invoke this feature, all I need to do is pull LAT high while GSCLK is in a low state? Am I correct?

2. As long as I don't send in any new data through SIN/SCLK between two separate LAT pulses, will the grayscale/control data remain unchanged on that second pulse?

I mainly ask this because a project that I am working on requires some particular timing constraints that involve higher PWM frequencies than this chip provides by default. I believe that I can increase this apparent frequency by scaling down the duty cycle, and then just resetting the GS counter early. Say I wanted twice the refresh rate. I would scale my 16-bit GS value by 1/2, and then reset the GS counter once it reaches 32,768 steps in.

Linux/AM3358: Auto start of QT GUI application

$
0
0

Part Number:AM3358

Tool/software: Linux

Hello All,

I have designed a custom board of AM3358 with General Purpose Eval Board as reference. The board is working fine.

I have some GUI application with QT to run on TI Linux of this board.

I want the GUI to come up on boot i.e. auto start.  I have seen some examples in the forums where they are running some scripts in the /etc/init.d . But those examples are for scripts to run applications without GUI. But mine is with GUI and still I tried it but failed .

Kindly help me in making my application with Gui developed in QT come on boot i.e. autostart .

Regards

Mad_hu

TPS2H160-Q1: Current limit and Thermal shutdown

$
0
0

Part Number:TPS2H160-Q1

Hello

My customer chosen TPS2H160-Q1 for their product ( Proto-type stage)

They are testing for current limit opearation and thermal shutdown operation.

Would you please kindly check attached ppt and give me your advice?

I myslef  did not check by EVM.

 

Question

Q1  I think  step(A) ~(B) ST2 goes low is due to current limit.       

The difference between actual( 2.3A) and setting ( 1.8 A) seems to be      

due to current is slowly ( a 200~300ms/ step )increasing  like as other thread(*)?      

Please have your opinion. (*)

http://e2e.ti.com/support/power_management/switches/f/949/p/664302/2442152?tisearch=e2e-sitesearch&keymatch=tps2h160-q1#2442152

 

Q2  I think step(D)  Io kept ~0.7A is ICL(STD)=60% of  external current 

 limit setting . ( I don’t know the reason why 0.7A).       

Is it correct? Please have your opinion.

 

Q3  I think (D) to (E) is current limit during thermal shutdown,  

but  we see dithering during ( D) to (E).   

I don’t know whether  dithering is inherent  during thermal shutdown       

Is this inherent for TPS2H160-Q1?      

 

Please advise.

Best Regards

 

(Please visit the site to view this file)

 

 

 

 

 

Viewing all 262198 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>