• __attribute__((bitband)) address miscalculation?
    Hello, I'm using Keil MDK 3.80a on STM32 and trying to use the bitband attribute to access individual bits in a 32bit register. typedef struct { uint32_t a0: 1; uint32_t b0: 1; uint32_t c0...
  • __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...
  • Using __attribute__( ( always_inline ) )
    If I use "__attribute__( ( always_inline ) )" before a functions which is defined in one file & call that function from another file. is it right???
  • __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"...
  • Use __attribute__ Error L6406E, L6407E
    Currently using STM32F051, this has 32K of Flash space. When I want to add a Word value in the program, it is placed in the position of 0x7FFC of FLASH, which is the position of the last side of FLASH...