CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

struct in struct access

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
stoyanoff



Joined: 20 Jul 2011
Posts: 375

View user's profile Send private message

struct in struct access
PostPosted: Mon Apr 25, 2016 6:30 am     Reply with quote

Hi! I have to situation:
Code:

struct {
   int1 Param1;
   int Param2
}str1;

struct{
   int1 Value1;
   int Value2;
} str2;


So I want to combine these structs in a new one.

Code:

struct{
 str1 First;
 str2 Second;
}Main;

The problem is I can`t access the base struct members.
Code:

Main.str1.Param1=1;

This doesn`t work. I tried a lot of combinations but I can`t achieve it!
Can you help me?
Thanks!
Ttelmah



Joined: 11 Mar 2010
Posts: 19233

View user's profile Send private message

PostPosted: Mon Apr 25, 2016 7:10 am     Reply with quote

When declaring a structure in C, the name after the struct keyword, is the 'structure name', and the one at the end of the declaration, is the variable name.
The compiler ought to complain if you are trying to use the variable name as a structure name...

The syntax to declare two structures, without declaring a variable, is:
Code:

struct str1 {
   int1 Param1;
   int Param2;
};

struct str2 {
   int1 Value1;
   int Value2;
};

Unless you are typedefing the structure declarations, str1 and str2, don't declare structures.

I'd also avoid using main as a structure name, since this is potentially a keyword:
Code:

struct{
   struct str1 First;
   struct str2 Second;
}Both;


Then Both.First.Param1 merrily accesses the first parameter in the first structure. Note again you need to use the variable name, not the structure name as you are trying to do.
stoyanoff



Joined: 20 Jul 2011
Posts: 375

View user's profile Send private message

PostPosted: Mon Apr 25, 2016 7:24 am     Reply with quote

Thanks! This is working!
One more question! How can I set value to entire structure?
For example:
Code:

struct  {
   int1 Param1;
   int8 Param2;
}str1;

or

struct str1 {
   int1 Param1;
   int8 Param2;
};


So in this case I have a int16 var which contains all data for the structure.
How can I assign this int16 to the structure?
Or I have to do it part by part, int8 by int8, int1 by int1?
Thanks!
stoyanoff



Joined: 20 Jul 2011
Posts: 375

View user's profile Send private message

PostPosted: Mon Apr 25, 2016 7:28 am     Reply with quote

My problem is I have a few registers which contain many flags (with different length). So I want to arrange these flags into a structure and when I read the register to set value into the structure and so on...
Ttelmah



Joined: 11 Mar 2010
Posts: 19233

View user's profile Send private message

PostPosted: Mon Apr 25, 2016 8:58 am     Reply with quote

There are a number of different ways of doing parts of this.

If (for instance), you have a structure like:
Code:

struct {
   int8 fred;
   int8 nibble:4; //four bits
   int8 cs:1; //one bit
} variable = {32,8,1};

Would assign 32 to fred, 8 to the four bits 'nibble', and 1 to cs.

Or you could assign a union with int16 variables to the same memory as the structure, and initialise these.
stoyanoff



Joined: 20 Jul 2011
Posts: 375

View user's profile Send private message

PostPosted: Mon Apr 25, 2016 11:36 am     Reply with quote

I need something like this:
Code:

struct  {
   int8 Param1;
   int8 Param2;
}str1;

unsigned int16 value;

str1=value;


I'm getting value from a register (16 bit wide) and I want to separate it to a structure of a bits and bytes. I have many registers with different values in length. So I need some kind of conversion int to struct.
Thanks!
Ttelmah



Joined: 11 Mar 2010
Posts: 19233

View user's profile Send private message

PostPosted: Mon Apr 25, 2016 2:06 pm     Reply with quote

Use a union.

Create a union like:

Code:

struct  str_struct {
   int8 Param1;
   int8 Param2;
};

union {
   struct str_struct str1;
   unsigned int16 value;
} vals;


Then write your number into vals.value (the int16), and you can access vals.str1.Param1, and vals.str1.Param2 to talk to the bytes.

Look also at the : qualifier in variable declarations, as I show to access sections of a byte that at 1, 2, 3, 4 etc., bits in size.
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group