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
2
votes
1 answer

Print float variable to IEEE format in Trace32

In my code I have the following variable that I want to display in my log t_f32 tx_float_to_1x16_send_data[15]; In my cmm script I tried different ways to display my variable but trace32 seems to only manage hex, decimal and binary but not…
2
votes
1 answer

Using registers in break point conditions with Trace32

Trying to set break point at a specific location and set trigger condition that is based on the value of one of the registers e.g. R1 (Cortex-R family CPU). Is there a way to do it in trace32? What is the syntax for condition?
Maksim Skurydzin
  • 10,301
  • 8
  • 40
  • 53
2
votes
1 answer

How to measure the amount of memory consumed by the stack?

With Lauterbach TRACE32, how to measure the amount of memory consumed by the stack when the application is running? I am using AUTOSAR OS on a PowerPC CPU.
sergej
  • 17,147
  • 6
  • 52
  • 89
2
votes
1 answer

how to quit currently running Trace32 from command line

I am doing the automate regression with Trace32. Before the regression starts, if any Trace32 process is in use, I want to kill the process. The problem is, if I kill it with system OS, when regression starts, the GUI will pop up a dialog saying…
Wei
  • 21
  • 1
  • 3
2
votes
1 answer

Fill memory with a constant in Trace32

I'm new to Trace32 and symply trying to fill 174bytes, starting from a given adress, with the same value (sometimes 0x00, sometimes 0XFF). Looking at the documentation, Data.Set seems to be the way to go but I can't figure out the correct…
2
votes
1 answer

How to check current breakpoint function in TRACE32?

I'm trying to check if the program stopped in a function in a TRACE32. I know I can see the the functions in FRAME window but no idea how to copy them to a variable inside my script. Any idea how to do that ?
John Smith
  • 777
  • 2
  • 14
  • 37
2
votes
1 answer

Use quotes in Lauterbach strings

I am trying to autogenerate a file using cmm script for Lauterbach. Here is what I want to show up in the file: { "source": "XYZ" } // quotes included However I cannot get the cmm script to accept the quotes. Using "\" doesnt work either. Is…
2
votes
1 answer

controlling trace32 via command line

I have to flash single output files one by one to mpc controller, instead of using the GUI i am trying to do it automatically via command prompt, i have searched and i found this link controlling lauterbach through command line i tried to use the…
Muhammad
  • 61
  • 1
  • 6
2
votes
3 answers

Command line interface for Lauterbach

I am using Lauterbach debugger (TRACE32 interface) on a 7447 processor. I need to load multiple files onto this processor which I do by running commands in the T32 GUI. Idea is to have a script do the job. One way is to call individual .cmm files in…
neon
  • 31
  • 1
  • 4
2
votes
2 answers

String format - practice language - trace32

In the Trace32 language--Practice-- is there a command for formatting strings? I know of the format.hex() and format.decimal() commands but I have had no luck finding anything like a format.string()
Steven
  • 172
  • 3
  • 9
1
vote
1 answer

How to print float variable from Trace32 with python command?

I have a simple C code which will update static variable with floating variable. Let's say I have static float32 totalcount = 60.73f; I want to know how to get float values from Lauterbach trace32. I have tried to print the float values using…
user2986042
  • 1,098
  • 2
  • 16
  • 37
1
vote
0 answers

Stopped at vector cache

I am using a Lauterbach trace32 debugger for S9KEAZ128ALMH controller. And when debugging I'm getting a message Stopped at Vector catch. I used the skez.cmm script to configure flash. The same works for another sample project.
Prem
  • 11
  • 1
1
vote
1 answer

How to pass an argument to a TRACE32 .mem file?

I am trying to implement a "generic" TRACE32 menu that takes a parameter and can be reused across different projects. Would something like that be possible? How do I pass an argument to a .mem file loaded by MENU.ReProgram? ;my_menu.mem ADD MENU ( …
sergej
  • 17,147
  • 6
  • 52
  • 89
1
vote
1 answer

I am trying to install T32 software using Linux command. However, I am stuck at "No screen library found"

[[No screen library foundenter image description here](https://i.stack.imgur.com/cjsHp.jpg)](https://i.stack.imgur.com/L5yRP.jpg) I have tried using command ldd to view the library, however it say no such file or directory.
1
vote
1 answer

Is there a way to typecast void pointers in Lauterbach

I have a structure containing a void pointer but when I need to view the contents of this pointer, I want it to be displayed as a pointer of a particular type. Is there a means to do this within Lauterbach? I tried using the symbol.AddInfo.Type…
Damola
  • 72
  • 5
1 2
3
12 13