• Function pointer parameter
    From C,I called an assembly function passing in generic pointer and a function pointer. I can access the first parameter (generic pointer) by taking in the values from R2 and R1 but I have difficulty...
  • Function pointer parameter
    From C,I called an assembly function passing in generic pointer and a function pointer. I can access the first parameter (generic pointer) by taking in the values from R2 and R1 but I have difficulty...
  • passing function pointers as parameters
    Hi, I have written a simple 8051-application using uVision2 V2.37. I have defined a function which expects a pointer to a function which is then saved in an array of function pointers: int registerFunction...
  • passing function pointers as parameters
    Hi, I have written a simple 8051-application using uVision2 V2.37. I have defined a function which expects a pointer to a function which is then saved in an array of function pointers: int registerFunction...
  • Can't pass pointer parameters correctly.Why?
    Hi, I wrote a test function as; // Task definitions OS_TID T_Test; U64 Test_stack[13312/8]; __task void init (void); __task void Test (void) ; // Function definition uint16_t TestFunc( uint8_t...