This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

what changes to the source code of ARM Cortex-M3 can i make in order to shorten execution time?

here are the 3 codes i need to change to shorten execution time.

any help will be greatly appreciated.

5734.zip
Parents
  • The moves and branches don't add any value to the processing - they are just overhead because of the algorithm you are using, and the use of the data_processing function adds branch overhead.

    How would you consider removing it?

    If you have a short function in C what is the common means to remove the overhead of the function call, and can you apply this technique here?

Reply
  • The moves and branches don't add any value to the processing - they are just overhead because of the algorithm you are using, and the use of the data_processing function adds branch overhead.

    How would you consider removing it?

    If you have a short function in C what is the common means to remove the overhead of the function call, and can you apply this technique here?

Children
No data