6AXCESS Programming TX-MLCD Mini-LCD Transmitter
Programming Restrictions
AXCESS program restrictions include:
1. DEFINE_LATCHING, DEFINE_MUTUALLY_EXCLUSIVE, and
DEFINE_TOGGLING are not supported. Similar functions are
accomplished with combinations of ON, OFF, and IFELSE.
2. PULSE is not supported. A similar function is accomplished with
combinations of ON, WAIT, and OFF
3. String support is limited:
No access to individual array elements
No string comparisons
Some string functions are not supported (e.g., LEFT_STRING, and so
on.)
Maximum string length is 36 characters.
4. Concurrent WAITS5 maximum.
5. Concurrent TOs5 maximum.
6. Nesting of levels3 maximum. With more than three, an internal
stack overflow may occur resulting in erratic, undefined behavior.
7. Total memory size4.5Kbytes. SOURCESEND will often need to be
turned OFF resulting in the inability to RETRIEVE a program from
the TXMLCD. There may not be enough memory in the TXMLCD
to include the program source code and the compiled (executable)
program.
Programming Basics
The following information is helpful when programming the TXMLCD:
TXMLCD is assigned device code number one. To use channel and
SEND_STRING commands for sending text to the LCD screen:
DEFINE_DEVICE
MLCD=1
Use device code number zero to return characters from the TX
MLCD RS232 port. Returning characters from TXMLCD can be
useful for debugging.