• Error: L6218E - undefined symbol when calling functions from another projects in the same workspace
    Hi, I'm using ARM DS-5 for my current project. In my workspace, there are two projects: test and test_bsp. My purpose is that the "test_bsp" project includes header and source files, and the application...
  • Error: L6218E - undefined symbol when calling functions from another projects in the same workspace
    Hi, I'm using ARM DS-5 for my current project. In my workspace, there are two projects: test and test_bsp. My purpose is that the "test_bsp" project includes header and source files, and the application...
  • 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...
  • 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...
  • Call RTX-51 tiny function in a function?
    Can I call RTX-51 tiny function in my function that was called in my task? Example: void function1 (void) { os_wait (...) ....... } void task0 (void) _task_ 0 { ..... function1(); ...