Memory map ISM43362

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hello!

I'm currently debugging an application.

I would like to check the RAM memory map, to see, what's located nearby my structure, which get's overwritten.

Can I access such information. I've searched the build folder, but so far no success.

SDK 3.5.2
Linux environment, building with a makefile.

0 Likes
1 Solution
GauravS_31
Moderator
Moderator
Moderator
10 questions asked 250 solutions authored 250 sign-ins

selednikovne_2220171

Can you switch to the latest version of Wiced Studio 4.1? I checked the build folder in this version of Wiced and the memory map for the application functions were found in the .csv file in build/snip.scan-BCM943907AEVAL1F-debug/binary. But the addresses for the data structures were not found. So you can use the debugger and find the memory address of the data structure using breakpoint debugging. You can add a memory monitor with the name of the structure instance (such as &scan_start_time) to find the address and value of the instance and other values in the address table.

View solution in original post

1 Reply
GauravS_31
Moderator
Moderator
Moderator
10 questions asked 250 solutions authored 250 sign-ins

selednikovne_2220171

Can you switch to the latest version of Wiced Studio 4.1? I checked the build folder in this version of Wiced and the memory map for the application functions were found in the .csv file in build/snip.scan-BCM943907AEVAL1F-debug/binary. But the addresses for the data structures were not found. So you can use the debugger and find the memory address of the data structure using breakpoint debugging. You can add a memory monitor with the name of the structure instance (such as &scan_start_time) to find the address and value of the instance and other values in the address table.