String Concatenation
Posted: Sun Sep 04, 2016 3:35 pm
Hi
Hi after 2 days trying to debug and see what is wrong , I found that this is a bug in Flowcode
So Here it is, having the following Variables : String_1[100] , Result_string[100]
If i put the following in a loop it will work perfectly until the Result_string is 100 characters long so that is fine :
Result_string = Result_string + String_1
But if I put the following in a loop the result string STOPS Concatenating when it reaches 21 characters long :
Result_string = Result_string + String_1 + ">"
It is not Possible to detect this in simulation it only happens when the program is downloaded to the MCU ( Arduino Mega 2560 )
Hi after 2 days trying to debug and see what is wrong , I found that this is a bug in Flowcode
So Here it is, having the following Variables : String_1[100] , Result_string[100]
If i put the following in a loop it will work perfectly until the Result_string is 100 characters long so that is fine :
Result_string = Result_string + String_1
But if I put the following in a loop the result string STOPS Concatenating when it reaches 21 characters long :
Result_string = Result_string + String_1 + ">"
It is not Possible to detect this in simulation it only happens when the program is downloaded to the MCU ( Arduino Mega 2560 )