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

Linux/TDA2PXEVM: VISION_SDK converting an application from bios version to linux version, i2c issue

$
0
0

Part Number:TDA2PXEVM

Tool/software: Linux

Dear TI team,

we have an application built similar to the vision_sdk demo apps using tda2px_evm_bios_all config.
We are currently trying to have that application built with Linux config to include more functions.

The new config is based on tda2px_evm_linux_all/cfg.mk


We uses I2C (2 & 4, starting counting from 0) to communicate and encountered issues while running  apps.out.

[HOST] [IPU1-0] 73.280882 s: I2C2: Instance NOT enabled during init ... ERROR !!!

It looks the hardware split is I2C2 is controlled by A15 (linux build) and I2C4 is controlled by IPU-0 (same as the previous bios app).

We would like to keep the apps as unchanged as the bios version as possible.

Is there anyway the change the control of I2C2 back to IPU-0?  



Thank you so much!

-JC


TPS650250: Information on Lifecycle

$
0
0

Part Number:TPS650250

I'm looking for for information on the lifecycle of the TPS650250. Specifically are there any plans to end production or sales on this part? 

Thanks

CCS/LAUNCHXL-F280049C: No communication between TMS320F280049C and Code Composer

$
0
0

Part Number:LAUNCHXL-F280049C

Tool/software: Code Composer Studio

I can't communicate code composer with my microcontroller, I looked for the code composer pack and it includes the C2000.

When I connect it to the PC, in connection anyone of the options can make the connection with the microcontroller

CCS/LAUNCHXL-F280049C: No communication between TMS320F280049C and Code Composer

$
0
0

Part Number:LAUNCHXL-F280049C

Tool/software: Code Composer Studio

I can´t make communication with code composer, I configure the ports and try with the XDS110 but I can´t make it work

It appears this

-----[An error has occurred and this utility has aborted]--------------------

This error is generated by TI's USCIF driver or utilities.

The value is '-233' (0xffffff17).
The title is 'SC_ERR_PATH_BROKEN'.

The explanation is:
The JTAG IR and DR scan-paths cannot circulate bits, they may be broken.
An attempt to scan the JTAG scan-path has failed.
The target's JTAG scan-path appears to be broken
with a stuck-at-ones or stuck-at-zero fault.

[End]

I don´t know what to do...

PGA970EVM: Use of FIR filter and temperature compensation algo in reference firmware

$
0
0

Part Number:PGA970EVM

Hello,

I am having difficulty using the compensation algorithm included in the reference firmware (which I really want to use for testing).

I have read SLDU024 several times over and have a faint idea as to how it should be implemented.

However, it seems to me that the FIR filter that was defined in pga970_fir.c is not used anywhere in the application.

The whole thing is very confusing, since a FIR filter is defined, yet how it's use factors into the Temperature Compensation algorithm is not straight-forward.

Is the FIR just for low-pass filtering of the temperature signal from ADC3? Or should the both the TADC and PADC signals be filtered through it? If so, where are the coefficients that should be applied to both TADC and PADC?

Does TADC mean the temperature reading from ADC3?

Does PADC mean the position measurement from either ADC1, ADC2 or a ratio of both?

If diagnostic testing is not being used, will the ping-pong buffer increment? Meaning, will we go from VarJ = 0 up to VarJ=3? Same for VarI?

This reference firmware has been a blessing, but its implementation is very confusing...it's like trying to piece together a jigsaw puzzle to use it...one with missing or very unclear instructions.

Also, can I just bypass the FIR filter and plug the ADC values for DEMOD1 and ADC3 into the compensation algo directly?

If so, what was the purpose of the FIR filter?

On another topic, according to 7.3.1.7, "Internal Temperature Sensor," from SLDS201A describes an algo for calculating the device junction temperature from the voltage reading of ADC3. Does this temperature reading need to be factored into the TC compensation algo, or just the raw ADC3 value, i.e. TADC? Or is TADC = 25+(ADC_CODE_READ - CODE_25C)/GAIN ? Or is this value just for broadcasting over SPI to the main micro in larger application for end user use?

Thanks.

DLPDLCR4710EVM-G2: DLPA3005 is discontinues, which PMIC can be used with DLPC3439?

TPA0211: Outpur impedance at shutdown

$
0
0

Part Number:TPA0211

Dear Specialists,

My customer is considering TPA0211 and has a question.

I would be grateful if you could advise.

---

According to the datasheet P.17 9.4.1 Shutdown Mode, while in shutdown mode, the device output stage is turned off.

Does this mean the output is high impedance?

---

I appreciate your great help in advance.

Best regards,

Shinichi

AWR1843: Because AWR1642 have 2.4GHz noise concern, do AWR1843 have the same one risk?


CCS/LAUNCHXL-CC2640R2: undefined symbols heapEnd and heapStart. / Output file.

$
0
0

Part Number:LAUNCHXL-CC2640R2

Tool/software: Code Composer Studio

Hello, I'm trying to run the central_bidirectional_audio project, and every time I try to build the app portion of the project, I get errors. 

undefined       first referenced
symbol           in file
--------- ----------------
heapEnd <whole-program>
heapStart <whole-program>

And: "central_bidirectional_audio_cc2640r2lp_app.out" not built

I cannot for the life of me figure out what I need to do to solve these problems. 

TAS5805M: Artwork of PBTL for TAS5805M

$
0
0

Part Number:TAS5805M

Dear Sirs,

My customer asked us about PCB artwork  of  PBTL for TAS5805M.

I checked datasheet and user guide of TAS5805M.

Therefore,  I found only circuit diagram.

So please let me know about PCB artwork  of  PBTL for TAS5805M.

Best Regards,

Y.Hasebe

MSP430FR6989: Log function for Energia -- Thermistor

$
0
0

Part Number:MSP430FR6989

I am trying the basic thermistor program using my launchpad and I am having trouble using the log() function. When I take the log() of the variable I received an error. I then used logf() of the variable and the program compiled and downloaded to the board but the value was incorrect. What am I doing wrong here?

int Vo_raw;
float R1 = 10000;
float logR2, R_t, T, Vo_volt;
float c1 = 1.12924e-03, c2 = 2.34108e-04, c3 = 0.87755e-07;

void setup() {
pinMode(23, INPUT);
Serial.begin(9600);
}

void loop() {

Vo_raw = analogRead(23);//V_out signal from board
Vo_volt = Vo_raw * 3.3/4096; //convert from signal to volts
R_t = (3.3*R1)/Vo_volt - R1 ; //voltage divider equation to determine resistance
logR2 = logf(Vo_volt); //take log of voltage
T = (1.0 / (c1 + c2*logR2 + c3*logR2*logR2*logR2)); //thermistor equation
T = T - 273.15; //celsius to kelvin
T = (T * 9.0)/ 5.0 + 32.0; //kelvin to F

Serial.print("log(Resist): ");
Serial.print(logR2);
Serial.print("; Temp: ");
Serial.print(T);
Serial.print("; Resistance: ");
Serial.print(R_t);
Serial.print("; Volts: ");
Serial.println(Vo_volt);

delay(1000);
}

DS90UB954-Q1: Image flicker and jitter

$
0
0

Part Number:DS90UB954-Q1

Hi,

    I have some problems with the use of 954, configuration is as follows:

   Why does the lower half of the screen jitter or flicker when switching?

    Or when 913 953 is switched, flicker or jitter occurs in the lower half of the picture.

   

BQ25713B: I2C interface of BQ25713B

$
0
0

Part Number:BQ25713B

Hello, TI  

 My MCU have two I2C interfaces, but three I2C interfaces are required in the design. Is it possible that BQ25713B share the same I2C interface with BQ34110

Best Regards

Li Yishan

CCS/CC2640R2F: CC2640R2F pairing fail

$
0
0

Part Number:CC2640R2F

Tool/software: Code Composer Studio

Hi everyone:

I used CC2640R2F sdk 1.5.00.58 to develop a BLE HID remote, most of the time the remote can pair to Android host ,but it still fail randomly.

The sniffer record show error after remote send ACL data, is it the problem from the android side or the hid remote?

I also attached Android log for reference.Thanks!

Pairing fail:

Pairing success:

(Please visit the site to view this file)

(Please visit the site to view this file)

28062F uses a fixed motor parameter. In the temperature range of 5-40 degrees Celsius, the output of large torque is abnormal.

$
0
0

Our company imitated drv8301 Revd to make a PCB board, using proj_lab10a.c routine for project development, currently encountered the following very serious problems, request guidance. At present, 5000 motherboards with 28062F + drv8301 have been shipped.

1. For the same set of programs, 100 motherboards are tested in the environment of 5 C. The output torque of 100 motherboards is normal, but the same motherboard and the same program are tested in the environment of 40 C. The output torque of 10 motherboards (about 10% probability of occurrence) is low. After repeated tests, the same motor parameter USER_MOTOR_Rs can't take into account the 10 motherboards. Can you solve this problem? Thanks very much!

2. For the same set of programs, Testing 10 motherboards (about 10% probability of occurrence) at 5 C can not start sometimes, but the same motherboard and the same program can start 100 motherboards in 40 C environment. After repeated testing, the same motor parameter USER_MOTOR_Rs can not take into account the 10 motherboards. Can you solve this problem? Thanks very much!

The probability of the above two problems may be deviated by 10%, but there is a motor parameter USER_MOTOR_Rs which can not take into account the performance of the motor in high and low temperature environment. Our products require normal operation at high and low temperatures. At present, we can only abandon the motherboards with problems, resulting in extremely high costs, and request TI engineers to guide us.


DS90UB933-Q1: display flash

$
0
0

Part Number:DS90UB933-Q1

At present, the customer is doing the camera function of ADAS system, and the circuit USES ds90ub933-q1. When the head picture of the controller shell is disturbed, the image will scroll up and down or flash screen will appear.

Product installation is as follows:

The camera is made of aluminum. The shell and the lower cover are sheet metal parts.

At the moment this can be seen anywhere in the control metal case, or in the case of the controller wrapped in copper foil

Attached is the product installation drawing, the product phenomenon video, and the corresponding circuit PDF document. Please help to analyze it, thank you(Please visit the site to view this file)

TAS5731EVM: TAS5731EVM user guide Involving the use of MC57XXPSIA,but how could i get MC57XXPSIA. I can't find MC57XXPSIA on the website.

TLV320AIC3104: TLV320AIC3104 circuit

TPS26624-25EVM: What is the failure mechanism? Is it fail-open or fail-short device?

$
0
0

Part Number:TPS26624-25EVM

1. In case of any failure or maloperation, does this IC fail as a short or open ?

2. Is this reliable as a replacement for fuse or is it meant only as an additional protection ?  

BQ34Z100-G1: BQ34Z100-G1 four leds issue

$
0
0

Part Number:BQ34Z100-G1

The BQ34Z100-G1 use for four LEDS, how to set the register about LED configurator? I only see "LED/COMM Configuration" as below, any other setting?

We refer to the website application. Multiplexed communication pin for LED display. The p1 and p2 pin LEDs are OK, the other two LEDs can't display.

Viewing all 262198 articles
Browse latest View live


Latest Images

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