跳转至

9.get_dev_count

函数声明

C
    int py_get_dev_count(const char *chl_name);
  • 描述

    根据通道名称,取得目标通道下设备的数量。

  • 参数

    chl_name:目标通道的名称。

  • 返回值

    返回设备的数量。

  • 示例

Python
1
2
3
4
5
6
7
8
    c4py.py_load_so()
    c4py.global_init()
    chl_name = "python采集通道"
    dev_count = c4py.get_dev_count(chl_name.encode())
    print("dev count:" + str(dev_count))
    device_info_array = (c4py.DeviceInfo * dev_count)()
    c4py.get_dev_array(chl_name.encode(), device_info_array)
    c4py.global_release()