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

TDA2EVM5777: TIDL issues with Tensorflow 1.1 networks import

$
0
0

Part Number:TDA2EVM5777

hello everybody , 

please  During conversion of several networks from Tensorflow 1.10 to TIDL format, using the import tool, these issues were found:

  • Op Type Shape is Not suported
  • Op Type StridedSlice
  • Op Type Pack
  • Op Type Conv2DBackpropInput
  • Op Type Maximum

could you help ?  where can I find details on TIDL limitations ?

thank you 

best regards

Carlo


SA555: Pulse-Width Modulation

$
0
0

Part Number:SA555

Hello Sir

I am trying to use the pulse-width modulation function of SA555 as an A/D converter. 

In the application, I hope SA555 outputs a PWM signal with its duty cycle varying linearly with  the voltage amplitude of the external analog signal applied to pin 5 (CONT).

However I got  a PWM waveform with variable duty cycle together with variable frequency, and the duty can only vary from 50% to 100% (VCC= 5V or 12V).

I did not apply a continuous pulse train as clock to pin 2. Is it possible to accomplish the function without using a continuous pulse train ?  

Best regards

Xiaoming

RTOS/CC3235S: can CC3235S support wifi roaming(IEEE802.11r)?

$
0
0

Part Number:CC3235S

Tool/software: TI-RTOS

Dear TI,

CC3235S whether support wifi roaming(IEEE802.11r)?

thx.

TPS92691: tps92691 issue

$
0
0

Part Number:TPS92691

Hi sir

Pls help check whether the TPS92691 has any minimum common-mode voltage requirements for CSP (10-pin) and CSN (9-pin)? if there is, what is the minimum value? tks!

TINA/Spice/UCC2897A: Simulation Error and No Output

$
0
0

Part Number:UCC2897A

Tool/software:TINA-TI or Spice Models

Dear Sir,

The UCC2897A PSpice Transient Model is not showing any output voltage in the simulation.

please find the below screenshots of the error and the output waveforms:

are there any settings to be changed for this simulation.

Thanks and regards,

Nesh

TDA2EVM5777: how to modify input file for TDA2 evm on SDcard

$
0
0

Part Number:TDA2EVM5777

Hi everybody , 

please about the input video file to be placed together with the final files on the SD card of the board. The video provided from TI  ( inputdata ) , that is also used in the segmatic demo, is in a binary format and it is  not possible to convert it to a standard video  file.

I  would like to know how to change the input video , and how to create it froma a standard video format .

best regards

Carlo

DLP4500: dlp4500 Calibration board square size and unit problem

$
0
0

Part Number:DLP4500

Hello everyone, some questions I want to ask.
Sorry, my English is not good, I can only translate from the Internet, please forgive me.
The operational steps are in accordance with the official manual dlpu019a.pdf

First question: Calibration board size of the square problem.

- On page 32 of dlpu019a.pdf "For example, if each square is 2 cm wide, enter "2" into the prompt"

Since the size of the square of the example is "2 cm", you can enter "2" in the command window.

However, I measure my square size is "0.9 cm", so I don't know if I can type "0.9" directly into the command window. Thank you.

 

Second question: Because of the red line in the picture ,  If I want the point cloud distance unit to be changed, where should I go to change the size
For example: cm changed to mm, where can  I go to set it?

CC2642R: ROM CRC check

$
0
0

Part Number:CC2642R

Hello!!

Please tell us about what is written in the Technical Reference Manual (CC13x2, CC26x2 SimpleLink Wireless MCU).

Question

  1. Chapter 8.7  ROM Functions, "CRC check (8 bits)" is written. Does this automatically detect ROM errors?
  2. Also, I want to know about this setting method.
  3. I also want to know what happens when MCU detect it. (Reset or interrupt, ...)

Thank you always for your kindness! !


Linux/TMDSICE3359: Boot time optimization

$
0
0

Part Number:TMDSICE3359

Tool/software: Linux

sdk 5.01

Linux RT arago.

AM3359 Industrial Communications Engine (ICE)

Hi!
I have to minimize the time of boot of .

So, I have remove the sevices, by "systemctl disable [service]" and by remove the links from rcX.d.
Result: the boot time has no changed.

Am I have to setup the uboot? By changing the dts-files?

Importing onnx model through Import tool

$
0
0

Dear Sir,

I converted the Tensorflow model to onnx model, now i want to import the same converted model through TIDL Import tool to generate .bin files.

I have gone through TIDL Deep Learning user guide, but  I couldn't find any reference for this process other then Tensorflow and Caffe models.

Kindly help me in this.

Thanks and Regards,

Shivansh Agnihotri

RTOS/AM5728: I2C R/W inconsistency

$
0
0

Part Number:AM5728

Tool/software: TI-RTOS

Hi,

this is the follow up question to the problem mentioned in the link below

we were able to address the problem by doing the code download from the ARM(linux) because it was very consistently taking around 4 sec for doing the same download but the DSP still has to communicate with the same slave device using I2C read,write which can't be done from ARM. This was achieved by the ARM side first doing the code download and sending a message to the DSP notifying the same. Upon receiving the this message, we pinmux the I2C bus from the DSP(given below) and carryout some periodic I2C transactions by pinmuxing the bus opening the bus performing read/write and closing the bus on each transaction. (Note: The ARM doesn't do any transactions after this to avoid conflict over the bus)

(PINMUX from DSP)

regVal = 0x60002;
((CSL_padRegsOvly)CSL_MPU_CORE_PAD_IO_REGISTERS_REGS)->PAD_GPIO6_10 = regVal;

regVal = 0x60002;
((CSL_padRegsOvly)CSL_MPU_CORE_PAD_IO_REGISTERS_REGS)->PAD_GPIO6_11 = regVal;

CSL_l4per_cm_core_componentRegs *l4PerCmReg =
(CSL_l4per_cm_core_componentRegs *) CSL_MPU_L4PER_CM_CORE_REGS;

CSL_FINST(l4PerCmReg->CM_L4PER_I2C3_CLKCTRL_REG,
L4PER_CM_CORE_COMPONENT_CM_L4PER_I2C3_CLKCTRL_REG_MODULEMODE, ENABLE);

while(CSL_L4PER_CM_CORE_COMPONENT_CM_L4PER_I2C3_CLKCTRL_REG_IDLEST_FUNC !=
CSL_FEXT(l4PerCmReg->CM_L4PER_I2C3_CLKCTRL_REG,
L4PER_CM_CORE_COMPONENT_CM_L4PER_I2C3_CLKCTRL_REG_IDLEST));

It is observed that the I2C read and writes are not consistent. We saw that 10 out of 100 write  resulted in it failing almost 10-20 times with I2C_STS_ERR_TIMEOUT and the read are even worse with almost 10-30 read fails with I2C_STS_ERR_TIMEOUT.

We then tried to debug it by doing the some read transactions and capturing it using a logic analyzer to see what was going wrong and following was observed,

  • Code download from  DSP  and read from  DSP  it  was seen that the delay between the write and read frame varies from 50-600 us.  No fails seen out of 1000 reads.

  • Code download from ARM and read from ARM it  was seen that the delay between the write and read frame is around 40-60 us every time. No fails seen out of 1000 reads.

  • Code download from ARM and read from  DSP it  was seen that the delay between the write and read frame  varies from 5-600 us, at times whenever read took <20us we saw that the read failed with the clock stretching untill timeout.

we noticed a peculiar observation from the captures, was that there is no clock stretching  just after the address read block from ARM but it does stretch every time from DSP.

Conclusion

  • If we were to perform the read from the same core where the code download happened the read never failed.
  • When the i2c peripheral is shared i.e., we were to perform the read from the  DSP core and the code download form  ARM read becomes inconsistent and fails.

ideally the code download and read/write transactions should happen in the DSP but as mentioned in the link above we are not able to do it because the timing is inconsistent taken to download from DSP and hence download was moved to ARM and read write transactions done from DSP because it required do so.

I2c driver configurations from DSP ad follows,

bus_no = 2;

i2c_cfg.enableIntr = true;

I2C_socGetInitCfg(bus_no, &i2c_cfg);



I2C_socSetInitCfg(bus_no, &i2c_cfg);

/*
* AM5 DSP does not have a default Xbar connection for I2C
* interrupt, need the following Xbar interrupt configuration
*/
/* Use reserved DSP1_IRQ_86 for I2C bus 5 */
CSL_xbarDspIrqConfigure(DSP_INSTANCE, CSL_XBAR_INST_DSP1_IRQ_86, CSL_XBAR_I2C5_IRQ);

/* Use reserved DSP1_IRQ_87 for I2C bus 3 */
CSL_xbarDspIrqConfigure(DSP_INSTANCE, CSL_XBAR_INST_DSP1_IRQ_87, CSL_XBAR_I2C3_IRQ);
I2C_init();

I2C_Params_init(&i2cParams);
i2cParams.bitRate = I2C_400kHz;

i2c_bus_handle_st[bus_no].i2c_handle = I2C_open(bus_no, &i2cParams);

we are using ti provided I2C_Transfer to read/write from DSP and ioctl for I2C transfer from ARM.

bios version: 6_52_00_12

pdk ver: pdk_am57xx_1_0_7

IPC version: 3_47_00_00

Thanks 

Ranganath

UCC38C44: AC-DO 200W solution

$
0
0

Part Number:UCC38C44

Hi  Can you give me a  soluction for AC to DC (85-264Vac input, 30V/6A, with PFC) about 200 watts?

PTH08T240W: About inbit control of PTH08T240W when using LM3880 sequencer

$
0
0

Part Number:PTH08T240W

I want an LM3880 power sequencer to control PTH08T240Ws connecting FLAG pins to inhibit pins directly. Referring to the datasheet of LM3880, FLAG pins are limited to  MAX. 6.0V.  But I cannot find  what voltage is loaded to the Inhibit control pin of PTH08t240w.  I use VI 12V for pth08t240w. Are Inhibit pins lower than 6.0 V even when  pth08t240w is enable ?

TDA2EVM5777: TIDL learning lib issue in building , how to use vcvarsall.bat

$
0
0

Part Number:TDA2EVM5777

Hi everybody ,

problem was found during the Building of source on host emulation(section 3.5 of TiDeepLearningLibrary_UserGuide.pdf )

Unclear instructions on how to use vcvarsall.bat (section 3.5.2 of TiDeepLearningLibrary_UserGuide.pdf) .

could you kindly give  proper options  to the bat file  to use to do right  instruction ?

beste regrads

Carlo

TMDSICE3359: Kernel of AM3359 - Operating System

$
0
0

Part Number:TMDSICE3359

Hello, I 've few question :

-What is the Kernel of AM3359? (Is it a Linux RT, Linux or TI-RTOS kernel?)

-And what is the pre installed Operating System on this processor?

-And I need to change the OS of this processor if we use the Processor SDK Linux RT, the Processor SDK Linux or the Processor SDK RTOS?

Thanks.

Best regards,

Florian


TDA2EVM5777: issues in rebuilding TIDL import tool both using command and bash file

$
0
0

Part Number:TDA2EVM5777

Hi everybody , 

In this page : https://e2e.ti.com/support/processors/f/791/t/689876 is mentioned that by updating the "tidl_tfImport.cpp" and re-building the import tool in the release package we can modify or add layers.   We tried to rebuild the import tool as described in the TIDeepLearningLibrary_UserGuide.pdf (section 3.6.1).

I get errore both on command and on bash(Please visit the site to view this file) ( see screenshot attached )  .How can I proceed  ?

I m on WIN10 64 bits 

best regrads

Carlo

TLV320AIC3204: Getting noisy signal with codec AIC3204 in audio project

$
0
0

Part Number:TLV320AIC3204

Hello,

I am using TMS320C5515 and codec AIC3204 for audio project.

Inside DSP C5515 i am generating 15 bit sine wave and then setting different codec gains (DAC and HP). 

Without load when i use negative gains of DAC below -6 i am getting highly distorted signal at codec output.

Below is my experimental results captured on Tektronik Digital Oscilloscope

The codec is set to run at 1.8V.

DAC GainHP GainVoltage P2PRMSWaveform Description
00860mV250mVSinewave
-10780mV223mVSinewave
-20700mV199mVSinewave
-30640mV179mVSinewave
-40580mV160mVSinewave
-50540mV142mVSinewave
-60500mV128mVSinewave
-70480mV115mVSinewave
-80440mv104mVSinewave
-90400mV93.2mVDistorted Sinewave
-100384mV83.4mVDistorted Sinewave
-110368mV75.5mVDistorted Sinewave
-120336mV67.5mVDistorted Sinewave

Query: How can i achieve a clean sinewave of 100mv with THD < 1%. Can the currently selected codec AIC3204 and DSP 5515 satisfy the requirement. If yes what is the specific codec settings i must use to achieve it. The data sheet of codec mentions DAC gain range of -63 to 24. But i get highly distorted waveform at -6db itself.

Please help me resolve this issue.

Thanks,

Swamy

HDC2010: Confusion between Temperature resolution settings & Temperature register size

$
0
0

Part Number:HDC2010

Hello,

 

I have confusion between Temperature resolution settings & Temperature register acquisition size.

 

Below is the description below "7.6.2 Address 0x01 Temperature MSB"

"

The temperature register is a 16-bit result register in binary format (the 2 LSBs D1 and D0 are always 0). The
result of the acquisition is always a 14-bit value, while the resolution is related to one selected in Measurement
Configuration register. The temperature must be read LSB first."

Understanding 1:

Temperature resolution with ’01:11 bit’ is with respect to sampling rate. So ’00:14 bit’ mean 14-bit sampling and ’01:11 bit’ mean 11-bit sampling of temperature value. Whatever the resolution, still all 16-bits (TEMP[15:8], TEMP[7-0]) will represent the Temperature value in digital format.

 

Understanding 2:

If Temperature resolution is ’00:14 bit’, do I need to consider only 16 bits (D15-D2 and D1 D0 are always 0). (TEMP[15:8], TEMP[7-0])

If Temperature resolution is ’01:11 bit’, do I need to consider only 13 bits (D12-D2 and D1 D0 are always 0). (TEMP[12:8], TEMP[7-0])

If Temperature resolution is ’10:8 bit’, do I need to consider only 10 bits (D9-D2 and D1 D0 are always 0). (TEMP[9:8], TEMP[7-0])

 

Which above understanding is correct.

 

Thanks & Regards

Vishnu Beema

ADS130E08: ADS131E08: Need C sample driver code

$
0
0

Part Number:ADS130E08

Hi,

I'm dealing with this ADC, and I'm using STM32 MCU as the hist CPU, my problem is that I could not configure the Device so I could connect and read registers or converted data from this ADC, So I want to know is there any C code available so I could study it and port it to STM32.

CC2564MODA: AAC support

$
0
0

Part Number:CC2564MODA

Hi

Could it be possible to support AAC or atpx as Bluetooth audio solution by CC2564MODA?

Or do you have partner company that can support or offer the AAC solution with CC2564?

BestRegards

Viewing all 262198 articles
Browse latest View live


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