I guess we should investigate and resolve this issue.
A triple, or greater, string concat is not supportted as a parameter to a function or subroutine. str(v1) + " - " + str(v2) + " - " is a four string concat. To workaround simple construct a temp_string and then pass the temp_string to the method.
I noticed GLCDPrint (152,0,str(v1) + " - " + str(v2) + " - ",ILI9341_YELLOW)
gives array sysfnstring1 not declared.
GLCDPrint (152,0,str(v1) + " - ",ILI9341_YELLOW) is ok
I guess we should investigate and resolve this issue.
A triple, or greater, string concat is not supportted as a parameter to a function or subroutine.
str(v1) + " - " + str(v2) + " - "
is a four string concat. To workaround simple construct a temp_string and then pass the temp_string to the method.Thanks for replying, printing several vars with trailing spaces in one line was the dream but the longer workaround is ok now I know.