, . , :
num_1 = AD0_COMPARETIME_1;
num_2 = AD0_COMPARETIME_2;
After the first extension, you will receive the following:
num_1 = (AD0_ADMD_CT);
num_2 = AD0_ADMD_CT;
And after the second extension, you will have the following:
num_1 = ((IO_AD1.ADMD.bit.CT));
num_2 = (IO_AD1.ADMD.bit.CT);
A problem can occur, as indicated in other answers, when expanding an expression.
source
share