We still have the same problem, when I implement it in the method:
Code:
class yourRobotClass: public iterativebot
{
AxisCamera &camera;//declare here
public:
yourRobotClass()://constructor
camera(AxisCamera::GetInstance())//init here
{
}
the robot code will not work, complaining that:
Code:
Relocation value does not fit in 24 bits.
is there another problem that come along with the camera class?
Thanks!
-Masoug