Skip to main content
tech225589
Associate
March 8, 2015
Question

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

  • March 8, 2015
  • 3 replies
  • 1796 views
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
    This topic has been closed for replies.

    3 replies

    Tesla DeLorean
    Guru
    March 8, 2015
    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 VenmoUp vote any posts that you find helpful, it shows what's working..
    tech225589
    Associate
    March 9, 2015
    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.

    Tesla DeLorean
    Guru
    March 9, 2015
    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 VenmoUp vote any posts that you find helpful, it shows what's working..