diff --git a/Device/list_motor.c b/Device/list_motor.c index b18aa65b5578db64c7874cb8013e7d0441a202b8..337e5a556ab3fc43eb607110e28d9888cd61e3ca 100644 --- a/Device/list_motor.c +++ b/Device/list_motor.c @@ -3,6 +3,10 @@ #include "list_motor.h" motor_t gm6020; + +motor_t gm6020_up; +motor_t gm6020_down; + motor_t m3508_frontleft; motor_t m3508_frontright; motor_t m3508_backleft; @@ -22,40 +26,48 @@ const pid_struct_t GM6020_pid_pos = { //A VERIFIER 0, 12, 3, 5, 10000, 10000 }; -void motors_init(void){ - gm6020.type = GM6020; - gm6020.can_info.can_id = 0; - gm6020.can_info.tx_id = 1; - gm6020.can_info.rx_id = 0x205; - gm6020.pid_pos = GM6020_pid_pos; - gm6020.pid_speed = GM6020_pid_speed; - - m3508_frontleft.type = M3508; - m3508_frontleft.can_info.can_id = 0; - m3508_frontleft.can_info.tx_id = 0; - m3508_frontleft.can_info.rx_id = 0x201; - m3508_frontleft.pid_pos = M3508_pid_pos; - m3508_frontleft.pid_speed = M3508_pid_speed; - - m3508_frontright.type = M3508; - m3508_frontright.can_info.can_id = 0; - m3508_frontright.can_info.tx_id = 0; - m3508_frontright.can_info.rx_id = 0x202; - m3508_frontright.pid_pos = M3508_pid_pos; - m3508_frontright.pid_speed = M3508_pid_speed; - - m3508_backleft.type = M3508; - m3508_backleft.can_info.can_id = 0; - m3508_backleft.can_info.tx_id = 0; - m3508_backleft.can_info.rx_id = 0x203; - m3508_backleft.pid_pos = M3508_pid_pos; - m3508_backleft.pid_speed = M3508_pid_speed; - - m3508_backright.type = M3508; - m3508_backright.can_info.can_id = 0; - m3508_backright.can_info.tx_id = 0; - m3508_backright.can_info.rx_id = 0x204; - m3508_backright.pid_pos = M3508_pid_pos; - m3508_backright.pid_speed = M3508_pid_speed; + +// void motors_init (motor_t motor, int motor_tx_id, int motor_rx_id, enum motors mot){ +// switch () + +// motor.type = GM6020; +// motor.can_info.can_id = 0; +// motor.can_info.tx_id = 1; +// motor.can_info.rx_id = 0x205; +// motor.pid_pos = GM6020_pid_pos; +// motor.pid_speed = GM6020_pid_speed; +// } +//extern motor_t gm6020_down; +//extern motor_t gm6020_up; + + +void motors_init(motor_t motor, int motor_rx_id, enum motors mtr){ + switch (mtr){ + case GM6020 : + motor.type = GM6020 ; + motor.pid_pos = GM6020_pid_pos; + motor.pid_speed = GM6020_pid_speed; + motor.can_info.tx_id = 1; + break; + case M3508 : + motor.type = M3508 ; + motor.pid_pos = M3508_pid_pos; + motor.pid_speed = M3508_pid_speed; + motor.can_info.tx_id = 0; + break; + default : + break; + } + motor.can_info.can_id = 0; + motor.can_info.rx_id = motor_rx_id ; +} + +void motors_all_init(void){ + motors_init(gm6020_down, 0x206, GM6020); + motors_init(gm6020_up, 0x205, GM6020); + motors_init(m3508_frontleft, 0x204, M3508); + motors_init(m3508_frontright, 0x203, M3508); + motors_init(m3508_backleft, 0x202, M3508); + motors_init(m3508_backright, 0x201, M3508); } diff --git a/Device/list_motor.h b/Device/list_motor.h index 20905453c9c5605a2678b2f3e385fc121747aff9..2ad2340c86a08518cb016f47117908b7ee49df53 100644 --- a/Device/list_motor.h +++ b/Device/list_motor.h @@ -18,4 +18,5 @@ extern const pid_struct_t M3508_pid_pos; extern const pid_struct_t GM6020_pid_speed; extern const pid_struct_t GM6020_pid_pos; -void motors_init(void); +void motors_all_init(void); +void motors_init(motor_t motor, int motor_rx_id, enum motors mtr);