cancel
Showing results for 
Search instead for 
Did you mean: 

RCC->AHBENR the symbol '' -> '' it's meaning in KEIL MDK .

tech225589
Associate
Posted on March 08, 2015 at 15:51

what does the symbol '' -> '' mean in KEIL MDK?

 RCC->AHBENR |= RCC_AHBENR_GPIOAEN;

 also list of all syntax symbols used in KEIL MDK. I am trying to do one project in ARM Cortex M0(STM32F0 R8).

 please help me.

#rtfm-lmgtfy
3 REPLIES 3
Posted on March 08, 2015 at 16:02

It means the same thing in Keil as it does in every C compiler.

Pointer to a Structure. 

http://www.studytonight.com/c/pointers-to-structure-in-c.php

The RCC structure is at a specific address in the Cortex's memory space. The structure is broken down into registers.

Review the include files, in the file/tree view click on the [+] to see the dependencies of a specific C file.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
tech225589
Associate
Posted on March 09, 2015 at 13:56

Thank you, 

clive1.

The tutorial link was very help full. I understood the pointers to structure well.

 thank you.

Posted on March 09, 2015 at 14:21

You should also be able to right-click on variables/functions and ''Go to definition''

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..