Get variable from Basic
Get Basic variable type This is the value sent by Basic's USR() function.
Get Basic variable as 8-bits interger This is the value sent by Basic's USR() function.
Get Basic variable as 16-bits interger This is the value sent by Basic's USR() function.
Get Basic variable as 32-bits float number This is the value sent by Basic's USR() function.
Get Basic variable as string pointer This is the value sent by Basic's USR() function.
Get Basic string variable length This is the value sent by Basic's USR() function.
Set variable for Basic
| inline void Basic_SetByte( |
| ) |
Set Basic variable as 8-bits interger This is the value returned by Basic's USR() function.
| val i8 | Value to be send to Basic |
| inline void Basic_SetWord( |
| ) |
Set Basic variable as 16-bits interger This is the value returned by Basic's USR() function.
| val i16 | Value to be send to Basic |
| inline void Basic_SetFloat( |
| ) |
Set Basic variable as 32-bits float number This is the value returned by Basic's USR() function.
| val f32 | Value to be send to Basic |
| inline void Basic_SetString( |
| ) |
Set Basic variable as string pointer This is the value returned by Basic's USR() function.
| val const c8* | Value to be send to Basic |