Simple newby question (SYS_CTRL_REGS)

Thread Starter

DennisM

Joined May 17, 2011
3
Hello everyone, have some understanding problem. I am using Code Composer Studio for programming a microcontroller. I have some code available which I have to extend, but have some problems to understand.

I have following expresions:

volatile struct SYS_CTRL_REGS SysCtrlRegs;

I couldnt find anywhere in code SYS_CTRL_REGS anymore, only this one line, is this expression defiened inside the programming environment. I couldnt find it in the Datasheet of the microcontroller too. I am bit confused.

Maybe this question is to simple, but I am a beginner so...

thx
 

terra

Joined May 12, 2011
13
Good Day mate,
It is looki like C code and

SYS_CTRL_REGS

is structre define in one of your Header file or Include Library
 

terra

Joined May 12, 2011
13
Good Day Denis, You will not find this in your data sheet. Are you using any libary provide by TI or thrid party? This structure is part of that library, normally they give you header file which have declartion of the structure
 
Top