My controller get infinity loop on last line of TI lib routine c_int00 and cant't reach main() when I declare array of my class object and array size more 256 objects.
class myClass {
public:
myClass(float v1=0,float v2=0) {var1=v1; var2=v2;}
private:
float var1;
float var2;
};
myClass myArray[1024];
int main(){}
There no problem if my array is any size array of int or float. If I remove default constructor problem is disappear. But what wrong in my constructor? Why problem depends of array size?