Howdy,
Some questions on the basics of using the BRX's internal serial port to send ASCII text to an LCD character display.
1 - If I configure the serial port settings through the dashboard, do I still need to use the SETUPSER instruction?
2 - Is the OPENDEV instruction required or only needed if I want to assign a nickname to @IntSerial?
3 - I set the serial port protocol to "Program Control" so I believe that means I now use the STREAMOUT instruction to send ASCII strings to the display?
4 - I believe that before using the STREAMOUT instruction, I first have to use STRINSERT to put the desired data into the string parameter? Should I also use STRCLEAR before each time I change the data in the string parameter or does STRINSERT automatically overwrite the previous value?
5 - This question may be specific to my display but I suspect it is probably similar to most displays. My display says to send the hex value for each character. So how do I format this data in the STRINSERT instruction? For example, if I want to send "ABC" do I enter "414243" or "0x410x420x43" or "0x41 0x42 0x43"?
Thank you.
Ray