KERNELV_CHANNEL_TECHNO_DATA_ARRAY2
Description
Defines an array of size KERNELV_CHANNEL_TECHNO_DATA_COUNT for structure of type KERNELV_TECHNO_DATA2.
typedef KERNELV_TECHNO_DATA2
KERNELV_CHANNEL_TECHNO_DATA_ARRAY2[KERNELV_CHANNEL_TECHNO_DATA_COUNT];
A variable of this type can be transferred to the functions kernelv_ch_get_techno_data2() or kernelv_ch_get_new_techno_data2() to read technology information.
KERNELV_CHANNEL_TECHNO_DATA_ARRAY2  ch_techno;
unsigned long int                   techno_len;
if ( kernelv_ch_get_techno_data2(0,
                           ch_techno,
                           sizeof(ch_techno),
                           &techno_len) == RET_FINISHED)
{
for (int i =0; i < KERNELV_CHANNEL_TECHNO_DATA_COUNT ,i++)
.  .printf("Type: %d\n", ch_techno[i].type);
}