Hello All,
In my application I would like to have an indicator on the front panel which will display various debug statements that I will write at different points of the program (so this would be like an action log for the user). It should act like a FIFO buffer so for a buffer length of say, five, it will show the last five actions in the program. Other than using a string array and managing the FIFO while updating the array, is there an easy way to implement this.
Thanks in advance.
~Roy