• 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__((used)) issue
    I defined function as below in library object , int test_func() __attribute__((used)) { .... } and this function has no non-weak reference in my project, when I compiled the project, it gives...
  • 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__((used)) issue
    I defined function as below in library object , int test_func() __attribute__((used)) { .... } and this function has no non-weak reference in my project, when I compiled the project, it gives...
  • __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...