есть некий клас
есть в нем контструктор
Stepper::Stepper(int nuber_of_steps)
{
debug("number_of_steps = %i\n",number_of_steps); - здесь 0
this-›step_number=0;
this-›speed=0;
this-›direction=0;
this-›last_step_time=0;
this-›number_of_steps = number_of_steps;
//init pin to output!
motor_dir_pin_1=1;
motor_dir_pin_2=1;
motor_dir_pin_3=1;
motor_dir_pin_4=1;
}
при вызове контруктора
Stepper stepper(10);
пораметр 10 не передается
подскажите где я ступил