About Mikrobasic

Thread Starter

R!f@@

Joined Apr 2, 2009
9,918
I am trying to figure out some Mikrobasic functions and as such so I can convert it to MikroC Pro.
First this part.

Code:
sub function Adc_Read_Ext_Res(dim resolution, ch_ as byte) as longword
dim i as longword
j as byte
From what I searched it means....
Code:
 Adc_Read_Ext_Res
is
Code:
  unsigned long (int) Adc_Read_Ext_Res;
and
Code:
 dim resolution
is
Code:
  unsigned long (int) resolution;
and
Code:
 ch_ as byte
is
Code:
char ch_;
and
Code:
 dim i as longword
is
Code:
  unsigned long (int) i;
and
Code:
 j as byte
is
Code:
char j;
Am I right or wrong ?
 
Top