... | ... | @@ -7,10 +7,10 @@ of RTIS Dev custom class objects. |
|
|
# Unavailable RTIS Dev methods
|
|
|
Here is a short list of the current RTIS Dev methods that aren't available through this wrapper:
|
|
|
* [create_measure_external_trigger_queue](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home#create_measure_external_trigger_queue)
|
|
|
* [create_measure_external_trigger_callback](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home#create_measure_external_trigger_queue)
|
|
|
* [create_measure_external_trigger_callback](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home#create_measure_external_trigger_callback)
|
|
|
* [create_processing_workers](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home#create_processing_workers)
|
|
|
* [set_log_mode](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home#create_measure_external_trigger_queue)
|
|
|
* [set_custom_logger](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home#create_measure_external_trigger_queue)
|
|
|
* [set_log_mode](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home#set_log_mode)
|
|
|
* [set_custom_logger](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home#set_custom_logger)
|
|
|
|
|
|
## Usage
|
|
|
|
... | ... | @@ -47,7 +47,7 @@ Now the `rtisdev` object can be used to run RTIS Dev methods from. |
|
|
### Executing remote methods
|
|
|
After the connection is made and no errors were shown, you can now use [all available RTIS Dev commands](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home). Some don't work and are listed in the [list](#unavailable-rtis-dev-methods) above.
|
|
|
Please use the [RTIS Dev wiki](https://cosysgit.uantwerpen.be/rtis-software/rtisdev/-/wikis/home) to know which arguments to use.
|
|
|
There is a difference between using optional and required arguments. For example, a RTIS Dev method with a required argument needs to given explicitly:
|
|
|
The commands should be called from the `rtisdev` objects. For example:
|
|
|
```matlab
|
|
|
rtisdev.open_connection();
|
|
|
```
|
... | ... | @@ -149,3 +149,4 @@ set(gca, 'XTick',xt, 'XTickLabel',xtlbl) |
|
|
set(gca, 'YTick',yt, 'YTickLabel',ytlbl)
|
|
|
title('Energyscape');
|
|
|
```
|
|
|
|