User manual

mikroBasic PRO for PIC32
MikroElektronika
157
Prototype
sub procedure SetOrg(dim RoutineName as string, dim address as longint)
Description Use the SetOrg() routine to specify the starting address of a routine in ROM.
Parameters - RoutineName: routine name
- address: starting address
Returns Nothing.
Requires This routine must be called from main.
Example
SetOrg(UART1_Write, 0x1234)
Notes None.
SetOrg
Prototype
sub function DoGetDateTime() as string
Description Use the DoGetDateTime() to get date and time of compilation as string in your code.
Parameters None.
Returns String with date and time when this routine is compiled.
Requires Nothing.
Example
str = DoGetDateTime()
Notes None.
DoGetDateTime
Prototype
sub function DoGetVersion() as string
Description Use the DoGetDateTime() to get date and time of compilation as string in your code.
Parameters None.
Returns String with current compiler version.
Requires Nothing.
Example
str = DoGetVersion() ‘ for example, str will take the value of ‘8.2.1.6’
Notes None.
DoGetVersion