• Is there something like sizeof(function) ?
    Note: This was originally posted on 7th May 2009 at http://forums.arm.com I want to do IAP (In-Application Programming). In order to do this, I will copy several C functions from IROM to IRAM and then...
  • typedef with a member "pointer to itself"
    Hello forum I've a c progamming question: I want to place a function pointer into a typedef with a function parameter "pointer to the typedef itself": typedef struct pExampleStructTypdef {...
  • Accessing structure pointer members
    Hi all, For some reason, I cannot access the structure members if I use struct pointers. eg: typedef struct { int member1; }structure_t; structure_t structure, *structure_ptr; int...
  • Problems with init of a function pointer
    Hello I've a problem when initializing a global function pointer. Depending on where the function pointer is created, the adress of the funciton pointer is 0 (=wrong). There are no warnings in the...
  • Function pointers array location
    Hello, All: I'm trying to define function pointers array: static const void (*Serial_Func_Table[])(char*) = { SI_Func_1, SI_Func_2, SI_Func_3 }; Despite of "const" memory qualifier, this...