KERNELV_CHANNEL_TECHNO_DATA_ARRAY
Description
Defines an array of size KERNELV_CHANNEL_TECHNO_DATA_COUNT for structures of the type KERNELV_TECHNO_DATA.
typedef KERNELV_TECHNO_DATA
KERNELV_CHANNEL_TECHNO_DATA_ARRAY[KERNELV_CHANNEL_TECHNO_DATA_COUNT];
A variable of this type can be transferred to the functions kernelv_ch_get_techno_data() or kernelv_ch_get_new_techno_data() to read technology information.
KERNELV_CHANNEL_TECHNO_DATA_ARRAY ch_techno;
unsigned long int techno_len;
if ( kernelv_ch_get_techno_data(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);
}