Other Parts Discussed in Thread: BQ34Z100
Hi team,
I am using CCS Version: 5.1.1.00031
I want to create and initialize an array of structures in my project for which i have done the following
Created a header file with the following content
#ifndef BQ34Z100_H_
#define BQ34Z100_H_
typedef struct {
char SubClassID;
char Offset;
char Data[4];
int Min;
int Max;
char Type;
}bqData;
#endif /* BQ34Z100_H_ */
When i define a structure using the type mentioned above like this
bqData Flash[100];
in another .c file in which the header file is included
and try to initialize it like this using the content assist
Flash[0]."Ctrl+Space"
I dont get any of the parameters of structure in content assist (see screenshot) , no default ,help and template proposals are available when i press space holding ctrl key multiple times
Please tell me what is wrong and how do i correct it
Regards
Abhay

