You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Am AGCM4 geht der Stack-Pointer in der Console ständig hoch, der Code verbraucht also ständig neuen Stack-Speicher.
Debugging zeigt:
Irgendwas wird da falsch kompiliert - es hat mit der klasse "OP zu tun (src/op/op.cpp)" - ich kann den run()-code in robot.cpp reduzieren auf :
outputConsole();
watchdogReset();
und in outputConsole auf:
activeOp->getOpChain()
und in Op::getOpChain() auf :
return "test";
--- das reicht bereits um den stack zu verbrauchen - derselbe testcode in einem neuen programm verbraucht aber kein stack...
Any Ideas? :)
The text was updated successfully, but these errors were encountered:
Hi, just to make sure from which part increases the stack pointer. As that could be the getOpChain, the SP function or the print:
-make a loop (for) to loop the aop->geOptChain(), and then check if the SP has been increased by the same number for the same number of call
Am AGCM4 geht der Stack-Pointer in der Console ständig hoch, der Code verbraucht also ständig neuen Stack-Speicher.
Debugging zeigt:
Irgendwas wird da falsch kompiliert - es hat mit der klasse "OP zu tun (src/op/op.cpp)" - ich kann den run()-code in robot.cpp reduzieren auf :
outputConsole();
watchdogReset();
und in outputConsole auf:
activeOp->getOpChain()
und in Op::getOpChain() auf :
return "test";
--- das reicht bereits um den stack zu verbrauchen - derselbe testcode in einem neuen programm verbraucht aber kein stack...
Any Ideas? :)
The text was updated successfully, but these errors were encountered: