This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| runtime_library:target_commands [2015/04/20 16:53] – created ursgraf | runtime_library:target_commands [2016/02/25 13:33] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 2: | Line 2: | ||
| Target commands offer a very efficient way to modify a running system from the host. A target command is any class method (method declared //static//) without parameters. Such a command can be called from the host system. Through the debugger connection the method is called by the runtime system on the target. \\ | Target commands offer a very efficient way to modify a running system from the host. A target command is any class method (method declared //static//) without parameters. Such a command can be called from the host system. Through the debugger connection the method is called by the runtime system on the target. \\ | ||
| For information about how to call a target command see [[http:// | For information about how to call a target command see [[http:// | ||
| + | \\ | ||
| + | \\ | ||
| + | A method called by such a target command is entered exactly once into the main loop. A target command can alter a global variable, a configuration parameter or start or stop a new task. This is a very efficient way for systems under development to adjust and test settings without the need for recompilation. | ||