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

CCS/CCSTUDIO: Loaded symbos but cannot map to file names and line numbers in a non stripped ELF file

$
0
0

Part Number:CCSTUDIO

Tool/software: Code Composer Studio

I am trying to debug Jailhouse on CCS v8 for an A72 core

I can load the symbols and I can see all funtions listed when trying to set breakpoints.

But when the breakpoint is hit, the CCS cannot trace back the file name and line number, so I cannot see the breakpoint in the source file.

Which means, I cannot step through line-by-line, cannot view local, global variables, I cannot even write expressions with data structure pointers.

I made sure that the binary is built with -g debug options and confirmed by running an objdump on that file.

objdump can disassemble and describe all the source code lines easily.

Attaching the file for your reference. Just load the symbols and try to set the PC to any of the functions(e.g. arch_cell_create)

(Please visit the site to view this file)

CCS should ideally start looking for the source file in which that function is defined. But this won't happen.

Please help

Nikhil D


AM3354: VDDSHV[1:6] power rails usage

$
0
0

art Number:AM3354

Hi,

In our current design, we have used ferrite beads before connecting PMIC power rails to SoCs VDDSHV power rails where the nets are named like as VDDSHV1-to-6 as shown below. And we have pulled-up all SoC related nets  and supplied some ICs(such as EEPROM,optocoupler),  from these power rails. Here my question is that can this usage create a problem in terms of noise that may effect processor? Or in other words can i supply ICs(consumes low power) by using these power rails(VDDSHV[1..6])? As i can see from "am335x_gpevm_zczbaseboard_3h0002_schematic_rev1_4a" there is a usage like this. 

AM3354 power rails

Optocoupler

Regards,

Zafer Çalışkan

CC1310: ADC not working as expected

$
0
0

Part Number:CC1310

Hello Ti,

I'm working with adcsinglechannel example, if i give 0.5voltage in ADC-1 DIO24, the converted value it is showing as 2023 and voltage as 2147376microvolt.

Expected value should be 620.

Can you explai why I'm getting these values?

Thanks and Regrads,

shilpa

CCS/CC2652R: How can I build CC2652R example using CCS V8.2 command line mode

$
0
0

Part Number:CC2652R

Tool/software: Code Composer Studio

Hi expert,

      I am learning how to use command line mode to build a CC2652R example project.

     http://processors.wiki.ti.com/index.php/Projects_-_Command_Line_Build/Create#com.ti.ccstudio.apps.projectCreate

I am working on Windows 7. "test" is the workspace directory.

/c/ti/ccsv8/eclipse/eclipsec -noSplash -data "test" -application com.ti.ccstudio.apps.buildProject -ccs.help -ccs.projects cli_ftd_CC26X2R1_LAUNCHXL_tirtos_ccs -ccs.workspace

It looks the commands are correct. But it just shows the usage. How can I do to make it ?

Usage:
eclipsec -noSplash -data "<workspace_dir>"
-application com.ti.ccstudio.apps.buildProject
(-ccs.projects <name1>[ <name2>]* | -ccs.workspace) [<options>]

where options include:
-ccs.configuration <name>
The build-configuration name to build (optional).
Defaults to active build-configuration.

-ccs.projects <name1>[ <name2>]*
Space-separated list of projects to build.

-ccs.workspace
Build entire workspace.

-ccs.buildType (incremental | full | clean)
The type of build to perform (optional).
Defaults to 'incremental'.

-ccs.autoOpen
Automatically open any closed projects (optional).

-ccs.args <file>
File containing any extra arguments (optional).

Thanks,

-ccs.help
Print this help message.

LMK00338: Compliance test for PCIe Gen 3

$
0
0

Part Number:LMK00338

Hi,

On the top page of the datasheet, there is the description of "Additive RMS Phase Jitter for PCIe Gen3 at 100 MHz :30 fs RMS (Typical)". Does it mean that you have history that LMK00338EVM passed PCIe Gen 3 compliance test? If the answer is yes, please let me know which test equipment you used at that time.

Best Regards,

Satoshi

AWR1243: Questions in radarDspProcessCfar_priv.c

$
0
0

Part Number:AWR1243

Dear respecful TI experts,

I have a couple of questions regarding software logics in radarDspProcessCfar_priv.c which is included in PROCESSOR_SDK_RADAR_03_04_00_00.

- Question #1

In the function named "AlgorithmFxn_RadarDspCfar_caall", loop variable "i" is converted into i_doppler depending on whether "i" is odd/even. Could you tell me what is the purpose of this conversion or the purpose of the "i_doppler".

-Question #2

In the function named "AlgorithmFxn_RadarDspCfar_caall", below codes which are performed when pCfarCreateParams->enableSecondPassSearch == 0 seem not correct

the stop condition in the second for loop should be corrected, otherwise all the variables in the for loop will be overflowed. please let me know if there is what I missed.

if (tempDetected < pCfarCreateParams->maxNumDetObj)
            {
                for (j = 0; j < (Int32)tempDetected; j++)
                {
                    cfarOut->noise[detected]        = tempNoise[j];
                    cfarOut->rangeInd[detected]     = tempRangeIndex[j];
                    cfarOut->dopplerInd[detected++] = i_doppler;
                }
            }
            else
            {
                for (j = 0; j < pCfarCreateParams->maxNumDetObj; j++)
                {
                    cfarOut->noise[detected]        = tempNoise[j];
                    cfarOut->rangeInd[detected]     = tempRangeIndex[j];
                    cfarOut->dopplerInd[detected++] = i_doppler;
                }
                break;
            }

TPS2549-Q1: What is difference between CDP SDP and DCP ?

$
0
0

Part Number:TPS2549-Q1

Dear all

     1. I test the charging current of the DCP and CDP mode, they can be up to 2.3A, it's right ? in datasheet table 3, they can be maximun 1.5A.

     2. In the CDP mode, after the DP and DM had be communication, the device can not be charging current ? right ?

DRA72XEVM: TypeError: Cannot read property "SOC" from null

$
0
0

Part Number:DRA72XEVM

Hi,

I created an messageQ IPC example project for IPU1 which can give print messages on trace0.  Then i added the below code to app.cfg

/* ================ Driver configuration ================ */
var soc   = Program.build.cfgArgs.SOC.toLowerCase();
var board = Program.build.cfgArgs.BOARD;
xdc.print("# !!!  Current soc is [" + soc + "] !!!");
xdc.print("# !!!  Current board is [" + board + "] !!!");

This gives TypeError: Cannot read property "SOC" from null

Why soc and board is not detected from project configuration? How to fix this?


LP8556: LP8556 question check

$
0
0

Part Number:LP8556

Hi Team,

We are penetrating our LP8556 in new project at my customer side, one question to confirm is that if customer have fixed the CURRENT_MAX(See 5mA), can they realize adjust the PWM duty cycle from 0% to 100%?

If yes, kindly let me know how to configure the register through the I2C and If not, kindly let me know the reason, thanks.

Best regards,

Sulyn

LM25069: hot swap design

$
0
0

Part Number:LM25069

Hi TI,

About hot swap design,
MOS layout could be as below?

thanks 

John

CCS/TMS320C6418: C6418 second bootloader _c_int00

$
0
0

Part Number:TMS320C6418

Tool/software: Code Composer Studio

Hello,

I develped a second bootloader for a  custom board. Target C6418, CCS5.2 and the application is a NON bios application. It is not fully working. I stored the binary file into the flash, cs1, 8 bit. I see that the first 1k of the image is correctly  copied at boot and then I was able to confirm that the boot.asm routine correctly copies the application image from the external flash into the onchip ram (in order to debug this I added an infinite loop at the end of the boot.asm code and loaded the symbols with the debugger and finally with the memory viewer I was able to see at ram 0x400 the app image bytes correctly copied). The problem seem to be at the _c_int00 call, infact once the .asm routine is ended and the c_int00 is called nothing else happen. What I don't understand is that I see the app correctly working if I:

1) connect the target with the emulator;
2) Reset the cpu with the code composer menu Run-> ResetCpu

3) Let the application run (F8)

Why if I am connected with the emulator and I simply perform a Cpu reset command followed by run command I see the app correctly loaded from the flash and executed but if I turn on the board (without the emulator) it doesn't work? Is it something related with the linker configuration? I made sure that no hardware bug is showing at board startup. I even added to the boot.asm routine a long delay (30sec) in order to be sure that something related with startup clud affect the bootloader.

I see that the _c_int00 for my target (C6418) is managed by the rst6400.lib and looking at the map file I see it placed at address 0x1864. I linked the rts6400 library on the project properties at "Runtime Support library" filed on "General" project properties.

I used this commands:

MyApp.out

-b

--image

--map MyApp.map

--entrypoint _c_int00

--zero

ROMS

{

 ROM1: org = 0x000000000, len = 0x001C00, romwidth=8,memwidth=8
 
 files={MyApp.bin}

}

Do you have any suggestion about how to understand this?

Is "Load Symbol" actually the best way to debug what is happening at boot time?

Since I see it working in one I connect the target with the emulator (load symbols), what is the difference on this setup compared to the typical boot sequence?

Thank you

Regards

UCD3138: Can I use EADC to instead of ADC ,if I need more ADC channels?

$
0
0

Part Number:UCD3138

 Hi Ereryone,

Can i use EADC to instead of ADC? Can you show me how to config the EADC , thanks.

RTOS/CC1310: CC1310 RF parameters

$
0
0

Part Number:CC1310

Tool/software: TI-RTOS

CC1310 has many RF parameters, although there are some comments, but I do not have relevant background knowledge, so it is difficult to understand and use them. What should I do?

For example:CMD_PROP_TX and CMD_PROP_RX.

DS90UB954-Q1: Questions for DS90UB954-Q1 Resolution Supported

$
0
0

Part Number:DS90UB954-Q1

Hi Experts,

Our customer wants to evaluate our DS90UB953-Q1/DS90UB954-Q1 and their resolution requirement is 2560*960/30fps, they want to know if our device can adopt this resolution automatically or needed to configure the device manually, can you help to check?

Thanks a lot!

DCA1000EVM: samll problems in “mmwave_sensor_raw_data_capture_using_dca1000_v02.pdf”


CCS: In CCS,I downloaded the version support as per the error message,But it doesn't work. I want to add the 1443 SYS/BIOS demo. What else do I need?

$
0
0

 Tool/software: Code Composer Studio

ISO7641FC: Equation of the average lifetime

$
0
0

Part Number:ISO7641FC

Hi,


Could you show me equation of the average lifetime?
They seem to want to know how to calculate lifetime.

This question is related to below thread.

Best Regards,

Kuramochi

TPS7A85: TPS7A8500RGRR - About GND (8pin & 18pin)

$
0
0

Part Number:TPS7A85

Hi Team,

 

8pin and 18pin are GND so same function.

Therefore, we understand that those pins are same potential and guess that IV characteristics of 8pin and 18pin are “short characteristics”.

However, we confirmed “Diode characteristics”.

 

Is 8pin not connected to 18pin in the device?

Our customer would like to know the structure of internal circuit.

 

Regards,

Kanemaru

TPD4E1U06: Several questions of CL

$
0
0

Part Number:TPD4E1U06

Hi all

Would you mind if we ask TPD4E1U06?

<Question1>
There is the description of CL "Condtion f = 1 MHz, VBIAS = 2.5 V, 25°C" on the datasheet P5.
Does VBIAS mean the applied voltage at D1+/- or D2+/-?

<Question2>
And then, the condition of frequency is 1MHz.
If the frequency is 100MHz, does CL increase or decrease?

Kind regards,

Hirotaka Matsumoto

DLP4710: Why .47 DLP has two Display controllers, but there is only one Display Controller in .23 & .3 && .45 ???

$
0
0

Part Number:DLP4710

Why .47 DLP has two Display controllers, but there is only one Display Controller in .23 & .3 & & .45 ???

Viewing all 262198 articles
Browse latest View live


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