Hi, I'm Matthew. I tried to search this memory dumping feature on the web, but I couldn't find it.
I use 64-bit SES 3.30 on a 64-bit Windows 10 machine.
|
C/C++ Source code
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#define NUMBER_OF_SAMPLES 1024
typedef struct my_struct
{
float roll;
float pitch;
float yaw;
float ax;
float ay;
float az;
}my_struct_t;
typedef union my_union
{
float raw_buffer[NUMBER_OF_SAMPLES][6];
my_struct_t samples[NUMBER_OF_SAMPLES];
}my_union_t;
my_union_t m_buffer; // global variable
|
I have a big array. I tried to drag all the HEX values from the memory view. However, calculating these back to 32-bit float values was quite a pain.
Is there a convenient feature from SES that can dump the memory (from address to end address) as a specific data type (float, double, int, etc)?
-Regards, Matthew
This post has been edited 3 times, last edit by "MatthewKyeo" (Dec 29th 2017, 10:05am)