Questions tagged [lauterbach]

Questions regarding Lauterbach Microprocessor Development Tools. Use trace32 tag for questions specific to TRACE32 tool.

Lauterbach provides microprocessor development tools for leading processor architectures like ARM, Intel, MIPS.

More information can be found at http://www.lauterbach.com/

186 questions
0
votes
2 answers

trace32 data.load.elf error "verify error at address NSX:0x8000"

This is my first time using Trace32 and I'm trying to flash a simple C program on arm target when I try to execute this command (to my knowledge this command will flash the target but not sure?). d.load.elf image.axf /Verify /ComPare I get the…
0
votes
1 answer

Lauterbach Trace32: No more arguments expected

Sometimes while trying to view a memory through Lauterbach, I get the error "No more arguments expected" and I am unable to view memory. Why this happens and what is the resolution? d 0x83000000 /sl no more arguments expected
user3565150
  • 884
  • 5
  • 21
  • 49
0
votes
1 answer

Query function symbol for existence

I can use sYmbol.Browse.Function to browse through function symbols loaded to the internal TRACE32 symbol database; quoting the General Reference [S]: sYmbol.Browse.Function Lets you browse through the list of functions that have been loaded to …
dfrib
  • 70,367
  • 12
  • 127
  • 192
0
votes
1 answer

Trace32 config file error

I am using following settings to control trace32 cmm scripts execution using C# scripts. Node="localhost" Port="20000" PackLen="1024" Device="1" Somehow I recently uninstalled & installed trace32 & lost config file. Now I am not able…
techy
  • 63
  • 1
  • 8
0
votes
0 answers

How to detect breakpoint is hitting a function in trace32 using lauterbach script?

I am modifing the lauterbach script. I need to check if the breakpoint is hitting correctly on the same breakpoint which I wanted to hit. Task_func has a runanble Runnable_Func I used this piece; IF…
np2807
  • 1,050
  • 15
  • 30
0
votes
1 answer

How to start and close Trace32 instances from t32start command line interface?

I have found out that Lauterbach Trace32 allows to launch Trace32 instances from the command line. I have a ts2 file. I am trying to use the t32start.exe to start and close Trace32 instances. I have roughly tried the following: t32start…
crazyGamer
  • 1,119
  • 9
  • 16
0
votes
0 answers

Lauterbach cmm scripts v is not working

I am trying to invoke the function () from cmm scripts during my CPU is running state or Halted state. the command i used here is v or Var.Call or Var.Set once i executed this command none of the above listed…
Siva
  • 13
  • 2
0
votes
0 answers

Lauterbach Trace32 load elf to NXP MC9S12ZVML128

I'm trying to write a PRACTICE script for loading the MCU MC9S12ZVML128 with pre-built (.elf format) application and start it for debugging. My general approach is based on the demo file, located in the: C:\T32\demo\m68hc12\flash\flash.cmm I'm using…
Muncho
  • 1
  • 3
0
votes
1 answer

Lauterbach cmm script fails to create a directory

From Lauterbach command console when I execute the following instruction then a directory is created. But when I include the same line in a cmm script, then it fails to create a directory: os.command mkdir…
user3565150
  • 884
  • 5
  • 21
  • 49
0
votes
1 answer

Symbol not found in Lauterbach cmm script

I have declared clk_proc on top of my script: LOCAL &clk_proc Later in my script I am using the variable &clk_proc=v.value(clk_proc) I am getting an error: "Symbol not found in this context" Any idea ?
user3565150
  • 884
  • 5
  • 21
  • 49
0
votes
0 answers

TRACE32 breakpoint issue

I have a development board which runs with Linux and other stuff. I boot the board and load the Linux symbols and i put the break point at known place. Though breakpoint gets hit, within 2 sec the state of the board changes from "Stopped by…
0
votes
1 answer

Handle unexpected Lauterbach T32-Remote API connection aborts

Imagine you are using or developing an automated test for the T32-Remote API. In this case the C-API is wrapped into Java. The connection is initialized with: T32_Config("NODE=", "localhost")); T32_Config("PACKLEN=", "1024")); T32_Config("PORT=",…
Paul
  • 93
  • 8
0
votes
0 answers

Using Trace32 & Lauterbach with CMD or Linux Terminal

I have a group of .cmm files that I am flashing. Are there any good resources to explain how I can use Trace32 via either the cmd prompt (Windows) or Linux terminal? My aim is to be able to automate flashing of the .cmm files without the GUI…
Tom
  • 117
  • 2
  • 2
  • 15
0
votes
2 answers

How do I get feedback from T32 after running cmm scripts?

I am running a T32 CMM script as below via command line(putting in a python wrapper) however I would like to know the status of T32 whether the script has been running successfully or was there an error,how can I that feedback from T32? cd…
Ritz
  • 1,193
  • 6
  • 15
  • 26
0
votes
1 answer

Trace32 compile .t32 file

I find trace32 can use some .t32 plugin to help debug OS dump.But I can not find the source file to build it.For example: t32\demo\arm\kernel\rtxarm\rtx.t32. Can anyone find me a example project?
jokemilk
  • 39
  • 2