• Passing by address results in compiler miscalculation?
    When I use a local struct variable of type RCC_ClocksTypeDef (part of the ST peripheral library) and I call the RCC_GetClocksFreq() function passing the local struct as the parameter, for some reason...
  • Using __attribute__((at(address)))
    Hi, I hope someone can shed a light on this, I have a board with a LCP2294 and 4Mb IDT71V416L external RAM. Using Keil RealView 3.01 I used the "__at 0x81000000" modifier to place a global...
  • bitband error in cmsis
    please, "--bitband" error when line 114 and line 128 in "cmsis\core_cmInstr.h" were not commented. And it will faster when rebuild if both line 114 and line 128 were commented.
  • __attribute__((naked)) is this option available?
    Hi I want to use this __attribute__((naked)) for one of my functions in keil, but it generates a warning that says main.c(6846): warning: #1207-D: unknown attribute "naked" This is my function...
  • __attribute__((at(x))) for AC6 ?
    Hello, is it possible to define a const variable at a given address using AC6 similar to this? __attribute__((used)) const char signature[16] __attribute__((at(0x08041000)))={"my_signature"...