hi,
i am working with msp430fr4133, and i am using a structure to store data. the size of my strucuture is very large . by default it is going into .bss segment. i want it to go to FRAM. I am using ccs v6. this my strucutre:-
typedef struct button_press
{
unsigned int remote_timinginfo[700];
}button;
typedef struct remote
{
unsigned char remote_id;
unsigned char remote_max_buttons;
unsigned char remote_frequency;
unsigned char remote_dutycycle;
struct button_press button[20] ;
};