dcmi_get_card_num_list Prototype
Syntax
int dcmi_get_card_num_list(int *card_num, int *card_list, int list_length)
Function
Queries the number and IDs of all Atlas 300T training cards (model 9000) in the system.
Parameter Description
Parameter |
Input/Output |
Type |
Description |
---|---|---|---|
card_num |
Output |
int |
Number of Atlas 300T training cards (model 9000). The value range is 1 to 16. |
card_list |
Output |
int |
ID array of the Atlas 300T training card (model 9000). |
list_length |
Input |
int |
Array length of the output parameter card_list. |
Return Value
Type |
Description |
---|---|
int |
Results:
|
Exception Handling
N/A
Constraints
N/A
Calling Example
...
int ret;
int device_count = 0;
int card_id_list[16];
ret = dcmi_get_card_num_list(&device_count, card_id_list, 16);
...