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
#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
Display More
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