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

BQ27Z561: Not able to perform write operation after entering to ROM mode

$
0
0

Part Number: BQ27Z561

Hello,

I am using bq27z561 in custom designed circuit board and MCU is communicating with bq27z561 over I2C channel.

My overall goal is to get accurate SOC value from fuel gauge and for that i have already generated (bq.fs, gm.fs, df.fs &.srec) files after following Learning cycle steps for my battery model.

Now when I am trying to program bq.fs over chip I2C commands are failing after executing ROM mode command,

I have attached I2C traces as below where device is giving NACK when MCU is trying to perform write operation to slave address 16.

Can i get some help on why chip is giving NACK?

(Please visit the site to view this file)


Video DAC

$
0
0

Hi,

I need a video DAC which converts 14 bit digital data(Parallel)with HSYNC and VSYNC pulses into  composite video.

Please suggest a suitable component with evaluation board.

Regards,

Sathya.

TMS320F28035: Can't trigger BUSOFF when R0 and RTR bit are interfered

$
0
0

Part Number: TMS320F28035

Hi,

My customer use CAN Stress tool to inject interference on CAN specific bit to see the BUSOFF triggered or not.

We find when introduce interference on R0 and RTR bit, it can not generate BUSOFF. 

Is it normal? 

It's a similar problem that we have test on F280049. https://e2e.ti.com/support/microcontrollers/c2000/f/171/t/829974

Compiler/CC3200-LAUNCHXL: sl_Bind returns -100

$
0
0

Part Number: CC3200-LAUNCHXL

Tool/software: TI C/C++ Compiler

Hi,

    I'm using CC3200 Module for my application,I am trying to listen to UDP Multicast messages  with udp socket, Sl_Blind returns -100, i am UDP Socket example code.

int BsdUdpServer(unsigned short usPort)
{
SlSockAddrIn_t sAddr;
SlSockAddrIn_t sLocalAddr;
int iCounter;
int iAddrSize;
int iSockID;
int iStatus;
long lLoopCount = 0;
short sTestBufLen;

// filling the buffer
for (iCounter=0 ; iCounter<BUF_SIZE ; iCounter++)
{
g_cBsdBuf[iCounter] = (char)(iCounter % 10);
}

sTestBufLen = BUF_SIZE;
//filling the UDP server socket address
sLocalAddr.sin_family = SL_AF_INET;
sLocalAddr.sin_port = sl_Htons(5353);
sLocalAddr.sin_addr.s_addr = 0;

iAddrSize = sizeof(SlSockAddrIn_t);

// creating a UDP socket
iSockID = sl_Socket(SL_AF_INET,SL_SOCK_DGRAM, 0);
if( iSockID < 0 )
{
// error
ASSERT_ON_ERROR(SOCKET_CREATE_ERROR);
}

// binding the UDP socket to the UDP server address
iStatus = sl_Bind(iSockID, (SlSockAddr_t *)&sLocalAddr, iAddrSize);
if( iStatus < 0 )
{
// error
sl_Close(iSockID);
ASSERT_ON_ERROR(BIND_ERROR);
}

// no listen or accept is required as UDP is connectionless protocol
/// waits for 1000 packets from a UDP client
while (lLoopCount < g_ulPacketCount)
{
iStatus = sl_RecvFrom(iSockID, g_cBsdBuf, sTestBufLen, 0,
( SlSockAddr_t *)&sAddr, (SlSocklen_t*)&iAddrSize );

if( iStatus < 0 )
{
// error
sl_Close(iSockID);
ASSERT_ON_ERROR(RECV_ERROR);
}
lLoopCount++;
}

UART_PRINT("Recieved %u packets successfully\n\r",g_ulPacketCount);

//closing the socket after receiving 1000 packets
sl_Close(iSockID);

return SUCCESS;
}

Thanks,

Nagaraj

OPT101: OPT101 non-linearity vs irradiance uniformity

$
0
0

Part Number: OPT101

Hello,

the OPT101 datasheet states that "If the light source is focused to a small area of the photodiode, nonlinearity occurs at lower radiant power". Is this due to an intrinsic electric phenomenon or this sentence is explaining that a large area photodiode signal will integrate a non homogenous irradiance all over its surface (with non linear effects)? 

Also, will this phenomenon occur both in photoconductive and photovoltaic modes?

Let's assume we are detecting a collimated beam producing a homogenous spot whose size is constant but less than the photodiode area. Why will the OPT response suffer from non linearity with regards to beam intensity in this situation?

Is there a way to approximately quantify the non linearity due to this aspect?

Thanks and best regards,

DP

ADS114S08: Low input offset voltage opamp

TMS320F28069M: Nested interrupts : How do get an ADC ISR interrupt, INT 1.1 inside Timer 1 interrupt, INT 13

$
0
0

Part Number: TMS320F28069M

Hello,

In my application I have used the Timer 1 to kickstart a series of ADC converisons. I want to consume the ADC values inside the timer 1 interrupt ISR. As long as I am in the Timer 1 ISR it appears that I am not receiving the adc isr interrupt. How do I enable to receive the ADC ISR while still executing Timer 1 ISR ? Is that possible at all ?

My requirement is as follows. The program wakes on timer interrupt, kick starts the ADC conversion, waits for it to complete and then consumes the ADC results and then exit the timer ISR. What would be the best way to achieve this if the scheme mentioned in the previous para is not possible ?

Thanks. -Bhaktha

TMS320F28075: EMIF with SDRAM or ASRAM

$
0
0

Part Number: TMS320F28075

Dear SIr/Madam

EMIF with SDRAM or ASRAM, which one is fast? Thank you!


CC2640R2F: follow-up on previous thread

Compiler/CC3200-LAUNCHXL: Wi-Fi forum

$
0
0

Part Number: CC3200-LAUNCHXL

Tool/software: TI C/C++ Compiler

Hi,

    I'm using CC3200 Module for my application,I am trying to listen to UDP Multicast messages  with udp socket on port 5353, Sl_Blind returns -100, i am UDP Socket example code.

int BsdUdpServer(unsigned short usPort)
{
SlSockAddrIn_t sAddr;
SlSockAddrIn_t sLocalAddr;
int iCounter;
int iAddrSize;
int iSockID;
int iStatus;
long lLoopCount = 0;
short sTestBufLen;

// filling the buffer
for (iCounter=0 ; iCounter<BUF_SIZE ; iCounter++)
{
g_cBsdBuf[iCounter] = (char)(iCounter % 10);
}

sTestBufLen = BUF_SIZE;
//filling the UDP server socket address
sLocalAddr.sin_family = SL_AF_INET;
sLocalAddr.sin_port = sl_Htons(5353);
sLocalAddr.sin_addr.s_addr = 0;

iAddrSize = sizeof(SlSockAddrIn_t);

// creating a UDP socket
iSockID = sl_Socket(SL_AF_INET,SL_SOCK_DGRAM, 0);
if( iSockID < 0 )
{
// error
ASSERT_ON_ERROR(SOCKET_CREATE_ERROR);
}

// binding the UDP socket to the UDP server address
iStatus = sl_Bind(iSockID, (SlSockAddr_t *)&sLocalAddr, iAddrSize);
if( iStatus < 0 )
{
// error
sl_Close(iSockID);
ASSERT_ON_ERROR(BIND_ERROR);
}

// no listen or accept is required as UDP is connectionless protocol
/// waits for 1000 packets from a UDP client
while (lLoopCount < g_ulPacketCount)
{
iStatus = sl_RecvFrom(iSockID, g_cBsdBuf, sTestBufLen, 0,
( SlSockAddr_t *)&sAddr, (SlSocklen_t*)&iAddrSize );

if( iStatus < 0 )
{
// error
sl_Close(iSockID);
ASSERT_ON_ERROR(RECV_ERROR);
}
lLoopCount++;
}

UART_PRINT("Recieved %u packets successfully\n\r",g_ulPacketCount);

//closing the socket after receiving 1000 packets
sl_Close(iSockID);

return SUCCESS;
}

Thanks,

Nagaraj

UCC28064A: UCC28064A PFC choke ZCD polarity dots

$
0
0

Part Number: UCC28064A

How does the UCC28064A PFC inductor ZCD winding polarity be labeled? I use Webench to simulate the result is the same two points, but in other reference designs there are two opposites.

CC1310: How to reset CC1310 by software SysCtrlSystemReset() function?

$
0
0

Part Number: CC1310

Hi,

simplelink_cc13x0_sdk_3_20_00_23

How to reset CC1310 by software? Is there a example code about this software reset?

Here we did, call SysCtrlSystemReset() as below picture.

But CC1310 is blocked and no reset happen when we test it in step by step debug mode.

Even can't be recovered by watchdog. 

LAUNCHXL-CC1352R1: Error in easylink_config.h

$
0
0

Part Number: LAUNCHXL-CC1352R1

Hi,

Not sure if this is the best place to report this, but here it goes.

On SimpleLink CC13x2_26x2 SDK, version 3.20.00.68, file source\ti\easylink\easylink_config.h, line 119: extern "C" shouldn't be there.

This brings me to another question: any plans to have these SDKs on GitHub? I can only see benefits from the broader community scrutiny, devs being able to easily report issues and submit PRs with fixes, such as this one. The overall quality of the code would improve. Other vendors, like ST are doing just that and the interest for this it's clearly noticeable.

CC1310: RF is blocked when we set Cache to be RAM

CCS/TIDA-01464: Spec of flyback and Inductors

$
0
0

Part Number: TIDA-01464

Tool/software: Code Composer Studio

I am testing the reference TIDA-01464 and I want the spec of the components: L101, T201, T202.


XIO2001: /PEREST and REFCLK during power down sequence

$
0
0

Part Number: XIO2001

Hello,

XIO2001 datasheet(SCPS212I) requires asserting /PERST before removing REFCLK for power down sequence in P23.
But my customer would like to know what kind of problem could happen if removing REFCLK before asserting /PERST because of their system design easiness.
Does the user absolutely have to keep this order in the datasheet?

Regards,
Oba

eQEP block in matlab embedded coder

$
0
0

 I cant able to connect my encoder output pin of an induction motor to eQEP block in Simulink. the encoder resolution is 48 pulses per one revolution. while the encoder is connected to the oscilloscope it is showing pulses of frequency 1.5kHz. I cant able to analyze the connection of encoder with DSP f28335

TMS320F28075: ADCINA1 internal 50KOHM pulldown resistor question

$
0
0

Part Number: TMS320F28075

Hi Champ,

The ADCINA1 has internal 50KOHM pulldown resistor, may I know how this resistor will affect the ADC result?

Anything need to take care will using this channel to sampling the signal?

FDC1004: TIDA-00317 Board evaluation

$
0
0

Part Number: FDC1004

Hi team,

My customer is developing a Battery liquid level detection product and they are very interested in our TIDA-00317. I saw we have a TIDA-00317 Reference Design board online so could you please help on how to apply for the board for my customer to do some evaluation? Thanks.

Best regards,

Wayne

AM5728: Camera screen is missing when running tidl sample model of object detection on TDA2

$
0
0

Part Number: AM5728

Hi sirs,

I imported a tidl trained model ( voc0712_ssdJacintoNetV2_iter_120000.caffemodel in caffe-jacinto-models-caffe-0.16) to TDA2.

The camera screen doesn't display correctly when I was running the model.

Do you have any ideas to solve this problem?

My VSDK version is 3.7 .

Thank you,

Gary

Viewing all 262198 articles
Browse latest View live


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