KERNELV_AXIS_TECHNO_DATA_ARRAY2

Description

Defines an array of size KERNELV_AXIS_TECHNO_DATA_COUNT for structures of type KERNELV_TECHNO_DATA2.

typedef KERNELV_TECHNO_DATA2
KERNELV_AXIS_TECHNO_DATA_ARRAY2[KERNELV_AXIS_TECHNO_DATA_COUNT];

A variable of this type can be transferred to the functions kernelv_ax_get_techno_data2() or kernelv_ax_get_new_techno_data2() to read technology information.

KERNELV_CHANNEL_TECHNO_DATA_ARRAY2  ax_techno;

unsigned long int                   techno_len;

if ( kernelv_ax_get_techno_data2(0,
                           ax_techno,
                           sizeof(ch_techno),
                           &techno_len) == RET_FINISHED)

{
for (int i =0; i < KERNELV_AXIS_TECHNO_DATA_COUNT ,i++)

.  .printf("Type: %d\n", ch_techno[i].type);

}