Character Transmit Limits
TurnipTruck
Posts: 1,485
Greetings,
I have been doing some work lately on a project in which I am dealing with large (~500) byte strings.
Through the process, I have encountered many of the limits of Studio debug, etc.
I am trying to display these strings on an NXT-CV12 using:
However, the panel is only able to display the first 200 or so characters although there exists more than the 200 in the array.
Have I run into another system limitation?
I have been doing some work lately on a project in which I am dealing with large (~500) byte strings.
Through the process, I have encountered many of the limits of Studio debug, etc.
I am trying to display these strings on an NXT-CV12 using:
SEND_COMMAND dvNXT_CV12,"'@TXT',1,cBIG_MESSAGE"
However, the panel is only able to display the first 200 or so characters although there exists more than the 200 in the array.
Have I run into another system limitation?
0
Comments
Edit: Typo
Do you know if this also applies to SEND_COMMANDs within a master? Such as a SEND_COMMAND to a virtual device.
How about a SEND_STRING from one master to a virtual device in another> Can I get away with more characters?
Thank you.
I'm filling a temporary array with what I want to send,
@TXT with a GET_BUFFER_STRING for the first 100 characters,
WHILE the temporary array has more characters I am GET_BUFFER_STRINGing the balance in groups of 100.
Working like a champ, and fast too!
No typo, working with 100 characters. I was unaware of the limit of 50. I'm going to change mine to 50 now that I know this just to be sure.
It was actually introduce to me by some one else on the tips list for my RSS Weather module.