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

TDA2PXEVM: git am ../linux-kernel-addon/earlyboot-kernel-patches/* failed

$
0
0

Part Number: TDA2PXEVM

Hi,

I want to apply the earlyboot-kernel-patches for kernel.But it apply failed.My vision SDK version is 3.07.

Here's the apply log.

git am ../linux-kernel-addon/earlyboot-kernel-patches/*
应用:dra7xx: Kernel Optimizations for early-use-case enablement
error: 打补丁失败:ti_config_fragments/auto.cfg:50
error: ti_config_fragments/auto.cfg:补丁未应用
打补丁失败于 0001 dra7xx: Kernel Optimizations for early-use-case enablement
失败的补丁文件副本位于:.git/rebase-apply/patch
当您解决这一问题,执行 "git am --continue"。
如果您想要跳过这一补丁,则执行 "git am --skip"。
若要复原至原始分支并停止补丁操作,执行 "git am --abort"。

Could you give some help?

Regards

Ll


CC1310: Reflow Profile for CC1310

$
0
0

Part Number: CC1310

Dear Team

Could you please let me know where I can find the Reflow Profile for CC1310?

Best Regards

Yunus

BQ25703A: I2C not responding

$
0
0

Part Number: BQ25703A

Hello,

I am writing to ask about communication over I2C. Chip is not responding to it's address (0xD6).

I am adding our schematic file.

In given situation:

5V on PP_HV  makes REGN to go 5V but CHRG_OK pin stays low.

Questions:

Is there any error on the schematic that could affect I2C communication? (Pull-ups of I2C lines are on other part of schematic)

What is minimal operational configuration of BQ25703A chip? What pins do I need to connect to be able to communicate over I2C?

Best regards,

Wojciech Maćkowiak

BQ40Z50: DATA MEMORY CONFIGURATION

$
0
0

Part Number: BQ40Z50

Hello, when i want to import excel file of the modified data memory for my application, after i push "write all" button an error comes up :

"Parameter value doesn't match type and data format: : Power IATA.IATA.config "

what is the correct method to modify the data memory using the "IMPORT FROM FILE " (in the battery management studio GUI)?

Thank you for your help!

BQ24157: Different from Revision 1.0 and Revison1.1 of BQ24157

$
0
0

Part Number: BQ24157

In BQ24157 datasheet, it show that there are Revision 1.0 and Revison1.1 , what different between them and which Revison will show in the BQ24157 mass product chip

HDC2080: The accuracy of rH and temperature while using HDC2080

$
0
0

Part Number: HDC2080

Hello TI,

As per datasheet HDC2080 sensor is factory calibrated to rH accuracy of ±2% and temperature accuracy of ±0.2°C.

But we are not getting the accuracy as mention in datasheet. The results we are getting, are varying up to ±10% in rH and ±4°C in temperature.

I need to know :-

1. As per datasheet HDC2080 have the accuracy of ± 2% in rH and ±0.2°C in temperature then what is the significance of rH and temperature offset concept of up to ±25 % in rH and ±20.62 °C in temperature.


2. If the HDC2080 have the accuracy of ±2% in rH and ±0.2 °C in temperature then what is the need of offset.


3. The accuracy as you are mention in datasheet is with offset or without offset?

USB 2.0 to USB 3.0

$
0
0

Hi TI

Our project needs two USB 3.0 interfaces, a USB 3.0 Host connects to a USB Camera, and a USB 3.0 Slave connects to a PC.            

But MCU RK3308 are all USB 2.0 interfaces, a USB 2.0 Host and a USB 2.0 OTG.           

I would like to know how we can meet the needs of USB 3.0. MCU does not have PCIe and other high-speed interfaces.           

Do you have any proposal?

Thank you.

Jerry

TUSB8041: Behavior in connecting high data rate devices

$
0
0

Part Number: TUSB8041

Hi Team,

We developed the system having TUSB8041 before and the device worked as USB2.0.
Recently, new project was kicked off and we wanted to reuse the circuit but we faced following issue.

[Issue]

When connecting two high data rate devices to the hub such as USB camera, one USB device was stuck.

[Our guess]

We are guessing this issue is caused by a band shortage due to large traffic of the cameras.

[Questions]

Then I have two questions to solve this issue.

1. Is this HW issue or SW issue?

2. If this is HW issue, How much data rate USB devices can we connect to  TUSB8041 safely?

It's nice if you can advice me how to evaluate the system to eliminate this issue.

Regards,

Takashi Onawa


CCS/LAUNCHXL-CC1312R1: Transmit UART data from sensor to collector

$
0
0

Part Number: LAUNCHXL-CC1312R1

Tool/software: Code Composer Studio

How do I transmit UART data from a GPS to a collector Launchpad ffrom a sensor Launchpad?

ADS1232: Is it possible to calibrate the ADS1232 both the channel at same time??

$
0
0

Part Number: ADS1232

Hello, 

I am using ADS1232 for Weight scale functionality.

Used library : https://github.com/ciorceri/ADS1232

#define _dout 2
#define _sclk 3
#define _pdwn 8
#define _channel 7

#define sample 3

#include "ADS1232.h"

ADS1232 weight = ADS1232(_pdwn, _sclk, _dout);

bool Channel_FLAG = 0;
float scale1 = 0;
float scale2 = 0;
float offset1 = 0;
float offset2 = 0;


void do_calibration() {
  long t_new_offset = 0;
  long t_raw_read = 0;
  float t_set_scale_value = 0;
  float t_weight = 0;

  // reset to default values
  weight.OFFSET = 0;
  weight.SCALE = 1.0;

  // tare
  t_new_offset = weight.raw_read(sample);
   if(Channel_FLAG == 1)
  {
    offset1 = t_new_offset ;
    }
    else
    {
      offset2 = t_new_offset;
      }
  weight.OFFSET = t_new_offset;
  Serial.print("Calibration offset = ");
  Serial.println(weight.OFFSET);
  Serial.println("You have 10 seconds to put a 39 KG weight on scale");
  delay(5000);

  // do calibration based on a known weight
  t_raw_read = weight.raw_read(sample);
  Serial.print("Units read = ");
  Serial.println(t_raw_read);
  t_set_scale_value = ((t_raw_read )*10) / 15;  // divide it to the weight of a CocaCola bottle
  if(Channel_FLAG == 1)
  {
    scale1 = t_set_scale_value ;
    }
    else
    {
      scale2 = t_set_scale_value;
      }
  weight.SCALE = t_set_scale_value;
  Serial.print("Calibration scale value = ");
  Serial.println(weight.SCALE);
  delay(2000);
  // read weight
  t_weight = weight.units_read(sample);
  Serial.print("Weight = ");
  Serial.println(t_weight);
}

void setup() {
  Serial.begin(9600);
//  weight.power_down();
//  delay(1);
  //weight.power_up();
  //pinMode(_pdwn, OUTPUT);
  //digitalWrite(_pdwn, LOW);
  //delayMicroseconds(50);
  //digitalWrite(_pdwn, HIGH);
  pinMode(_channel, OUTPUT);
  digitalWrite(_channel, HIGH);
  Channel_FLAG = 1;
  do_calibration();
   Serial.println("Scale 1 is calibrated take the weight");
   delay(5000);
  digitalWrite(_channel, LOW);
  Channel_FLAG = 0;
  do_calibration();
   Serial.println("Scale 2 is calibrated");
}

void loop() {
//  float a = 0;
//  float b = 0;
//  float c = 0;
  digitalWrite(_channel, HIGH);
  weight.OFFSET = offset1;
  weight.SCALE = scale1;
  delay(200);
  //a = weight.units_read(3);
  Serial.println(weight.units_read(sample));  
  //delay(50);
  digitalWrite(_channel, LOW);
  weight.OFFSET = offset2;
  weight.SCALE = scale2;
  delay(900);
  //b = weight.units_read(3);
  Serial.println(weight.units_read(sample)); 
  //c = (float)((float)(a + b)/2);
  //Serial.print("final_weight:");
  //Serial.println(c);
  delay(1000);
}

Setup information: 

In this we have made 2 separate channel , left side (2 load cell- half bridge) attached to channel-1 of ADS1232 and right side(2 load cell- half bridge) attached to channel-2 of ADS1232

In my application I want to get the left and right side weight , that values i will add in my code and get final user weight.

but in calibration of 2 channel at same time if I am trying to do then it is getting calibrated, but after sometime we stopped getting the correct weight. 

Kindly give some solution, how this can be done. 

UCC28C41-Q1: Not getting desired output signal

$
0
0

Part Number: UCC28C41-Q1

Hello,

Iam using UCC28C41-Q1 for an application which requires 40KHz with 50% duty cycle (the requirement is only for safety and logic ) i just need pulse output no need of feedback.

we have following circuit, but not getting any output signal in Tina and also PSPICE

TMS570LC4357: Endianness for external memories

$
0
0

Part Number: TMS570LC4357

Hi,

From other TI posts got to know that TMS570LC4357 supports big endian and the endianness cannot be changed.

Also, the following was mentioned, 'the byte ordering is managed inside the MCU depending on the endianness. The external data bus connections need not account for the endianness change.'

But how will the microcontroller determine which endianness to operate in?

Page 329 of technical reference manual shows a read only bit 0 for 'ENDIAN', which determines the endianness.

Who will set this bit?  Is there any additional pin to determine the endianness?

As suggested, we are maintaining same external data bus connections (D15:D0 of microcontroller to D15:D0 of external memory).  Do you foresee any concern?

Regards,

Archana Rao

CCS/CC2642R: Project structure for CCS and IAR

$
0
0

Part Number: CC2642R

Tool/software: Code Composer Studio

Hello,
Q1. I want to create a project based on project_zero (SDK simplelink_cc13x2_26x2_sdk_3_20_00_68) that can be compiled by CCS and by IAR. The idea is to have several folders of source files (application, BLE, general, drivers, etc), folder CCS for compilation by CCS/TI compiler and folder IAR for compilation by IAR. What is the best way to do it?

Q2. I get original demo ble5_project_zero_cc26x2r1lp_app_syscfg project to workspace [project_folder]\CCS and built it. It was OK.
After that I move files project_zero.c and project_zero.h from  to folder  
\CCS\ble5_project_zero_cc26x2r1lp_app_syscfg\Application\  to  folder  \Source\Application\, add these files to Project explorer as  “Link to files” relative to PROJECT_LOC and confirm adding the new location to include path.

Clean build failed at the linkage stage (screenshot is attached). What is a problem?

Thanks,

   Yakov Lyubman



TIDA-00355: Specifications of Transformer and inductor

$
0
0

Part Number: TIDA-00355

Hello,

It is observed that 2 transformers: (part num: 750342670, 750342671) and one Inductor(part num: 750342669) are not available in the market.
So can you let me know the detailed specifications of 1)750342670 2) 750342671 3) 750342669

I couldn't find them in internet and if I get them from Wurth electronics it will cost me and takes time. 

So let me know the specifications of the 3 part numbers provided

Hope you do so.

Thanks.

Sandeep

 

Compiler/TMS320C6678: 6678 optimized code performance issue

$
0
0

Part Number: TMS320C6678

Tool/software: TI C/C++ Compiler

Hello

i have two question to ask.

we tried different size of FFT (double, float, int32) inside dsplib of c6678 (version 3.4.0.0). we used TSCL of dsp to measure execute time of FFT. in all cases our measured time was 2 to 2.5 times greater than numbers reported in dsplib benchmark, here is first question:

1- what is source of this mismatch between our measured execution time and TI reported times (we implement our test according to all of TI recommendations)?

we also compared TI benchmark result of dsplib for 6455 to 6678. and Here is second question:

2- considering all of improvement in 6678, for example addition of more multiplier and ..., how comes that 6455 and 6678 performance are approximately the same (based on TI report numbers)?


TMS570LC4357: Boot up configuration pins

$
0
0

Part Number: TMS570LC4357

Hi, 

Does Hercules TMS570LC4357 need any hardware boot strap configuration pins (such as pull up or pull down on specific pins) during initial boot up?

I don't see anything in datasheet or tech reference manual asking for configuration pins during boot up.

Please advise.

Regards,

Archana Rao

TDA2EVM5777: Alg Plugin Creation on Linux

$
0
0

Part Number: TDA2EVM5777

Hello everyone,

I am creating an alg-plugin for my usecase over linux.

UseCase :- Capture -> Alg_ABC (DSP1) -> Display_M4 (IPU1_0)

I have referred FrameCopy for the development and followed the same steps for Linux. But when I include my plugin in cfg.mk at apps/configs path ,where all plugins are included for build , it is searching for SRC.MK file. But it is not being included in the plugin folder for the development over Linux (as per referred FrameCopy). 

Am I doing something wrong in here? Do I need to put the plugin folder at rtospath and create SRC.MK file specifying path for build ?

Following error has been given on the terminal :-

Makefile:51: /home/linux/Documents/SourceCode/vision_sdk/apps/src/rtos/alg_plugins/ABC/SRC_FILES.MK: No such file or directory
make[4]: *** No rule to make target '/home/linux/Documents/SourceCode/vision_sdk/apps/src/rtos/alg_plugins/ABC/SRC_FILES.MK'. Stop.
MAKEFILE.MK:9: recipe for target 'libs' failed
make[3]: *** [libs] Error 2
Makefile:200: recipe for target 'app_alg_plugins' failed
make[2]: *** [app_alg_plugins] Error 2
Makefile:36: recipe for target 'apps' failed
make[1]: *** [apps] Error 2
Makefile:12: recipe for target 'vision_sdk' failed
make: *** [vision_sdk] Error 2

Pl provide your inputs to resolve the issue. 

Regards,

Shantanu Joshi  

AM3358: Dual EMAC issue

$
0
0

Part Number: AM3358

Hi,

The customer connect one 100M (DP83848 (eth0)) network port and one 1000M (DP83867 (eth1))  network port by CPSW. The 100M network port can work normally. The 1000M port can be linked up, but cannot ping successfully. The device tree configuration as follows:

&mac {

pinctrl-names = "default", "sleep";

pinctrl-0 = <&cpsw_default>;
pinctrl-1 = <&cpsw_sleep>;
status = "okay";
dual_emac = <1>;
};

&davinci_mdio {
pinctrl-names = "default", "sleep";
pinctrl-0 = <&davinci_mdio_default>;
pinctrl-1 = <&davinci_mdio_sleep>;
status = "okay";
dp83867_0: ethernet-phy@3 {
reg = <3>;
ti,rx-internal-delay = <DP83867_RGMIIDCTL_1_75_NS>;
ti,tx-internal-delay = <DP83867_RGMIIDCTL_1_75_NS>;
ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>;
ti,min-output-impedance;
ti,dp83867-rxctrl-strap-quirk;
};

dp83848_0: ethernet-phy@7 { 
reg = <7>;
};
};

&cpsw_emac0 {
phy_id = <&davinci_mdio>, <7>;
dual_emac_res_vlan = <1>;
phy-mode = "rmii";
};

&cpsw_emac1 {
phy_id = <&davinci_mdio>, <3>;
dual_emac_res_vlan = <2>;
phy-mode = "rgmii-id";
};

内核log如下

Configuring network interfaces...

[ 10.518385] net eth0: initializing cpsw version 1.12 (0)
[ 10.687456] NS DP83848C 10/100 Mbps PHY 4a101000.mdio:07: attached PHY driver [NS DP83848C 10/100 Mbps PHY] (mii_bus:phy_addr=4a101000.mdio:07, irq=POLL)
[ 10.701969] PHY_INTERFACE_MODE_RMII
[ 10.705494] gmii_sel:reg=0xe9
[ 10.718883] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 10.724805] 8021q: adding VLAN 0 to HW filter on device eth0
[ 10.773229] net eth1: initializing cpsw version 1.12 (0)
[ 10.789765] TI DP83867 4a101000.mdio:03: attached PHY driver [TI DP83867] (mii_bus:phy_addr=4a101000.mdio:03, irq=POLL)
[ 10.801731] AM33XX_GMII_SEL_MODE_RGMII
[ 10.805508] gmii_sel:reg=0xe9
[ 10.813426] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[ 10.819411] 8021q: adding VLAN 0 to HW filter on device eth1

[ 12.888081] _cpsw_adjust_link:mac_control=0x20
[ 12.892601] cpsw 4a100000.ethernet eth1: Link is Up - 100Mbps/Full - flow control rx/tx
[ 12.901400] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready

The gmii_sel is set to 0xe9 according to the data manual register, 1000M network port will be normal when inserted and removed.

CCS/TMS320F28377S: XDS110 JTAG Debugger error (Is not working debug mode)

$
0
0

Part Number: TMS320F28377S

Tool/software: Code Composer Studio

Hi all,

Trying to program and debug the MCU TMS320F28377S using JTAG debugger XDS110, but JTAG is not working debug mode showing the error in console window as shown below

IcePick_C_0: Error connecting to the target: (Error -2131 @ 0x0) Unable to access device register. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 8.0.27.9) 

Here iam enclosing the screen shots of both errors. I Have checked the JTAG connector and it is fine.

What could be the problem? please support.

Regards

Naveen

 

 

 

 

LM5085: LM5085, VCC, REASON TO BE AC-COUPLED

$
0
0

Part Number: LM5085

Dear Sirs

VCC input of LM5085 its AC-COUPLED

I would like to see an explanation about how it really works (the reason to be ac coupled)

Thank You in Advance :)





Viewing all 262198 articles
Browse latest View live


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