source: MML/trunk/mml/links/tango/tango_get_properties2.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 618 bytes
Line 
1function prop_val_list = tango_get_properties2(dev_name, prop_name_list)
2% TANGO_PUT_PROPERTIES - enhanced tango_put_properties
3%
4%  argout=tango_tango_put_properties2(dev_name, prop_name_value_list))
5%
6% INPUTS
7% 1. dev_name -  device name
8% 2. prop_name_list - the name of the properties to read
9%
10% OUTPUTS
11% 1. prop_val_list - the list of property value
12
13% EXAMPLES
14
15% See also tango_put_properties2, tango_command_inout2
16
17% Written by Laurent S. Nadolski
18
19prop_val_list = tango_get_properties(dev_name, prop_name_list);
20
21if (tango_error == -1)
22    %- handle error
23    tango_print_error_stack;
24    return
25end
Note: See TracBrowser for help on using the repository browser.