• Copy a function from SRAM to flash and execute from flash
    Hello, what I would like to do is to copy a function from SRAM to flash and decide in the main if I want to execute from flash or from SRAM. What I observed it is that if this function is calling a...
  • Copy a function from SRAM to flash and execute from flash
    Hello, what I would like to do is to copy a function from SRAM to flash and decide in the main if I want to execute from flash or from SRAM. What I observed it is that if this function is calling a...
  • can I move a C function to sram from program memory?
    Hello, for example: there are stand alone function in program memory, it doesn't include another function(s), it is not nested, I want to move to sram and to run it there. void MyFunc(void)...
  • can I move a C function to sram from program memory?
    Hello, for example: there are stand alone function in program memory, it doesn't include another function(s), it is not nested, I want to move to sram and to run it there. void MyFunc(void)...
  • Call C function (that calls another C function) from assembly code
    Hi all, I want to call a C function (for example: func1() ) from my old assembly code. The problem is that if func1() calls another C function( func2() ), what will happen? How does the compiler pass...