2022-09-20 04:37:47 -03:00
|
|
|
#pragma once
|
|
|
|
|
2023-03-16 06:49:38 -03:00
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
2022-09-20 04:37:47 -03:00
|
|
|
|
|
|
|
#ifndef AP_GRIPPER_ENABLED
|
2022-10-31 23:39:04 -03:00
|
|
|
#define AP_GRIPPER_ENABLED 1
|
2022-09-20 04:37:47 -03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_GRIPPER_BACKEND_DEFAULT_ENABLED
|
|
|
|
#define AP_GRIPPER_BACKEND_DEFAULT_ENABLED AP_GRIPPER_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_GRIPPER_SERVO_ENABLED
|
|
|
|
#define AP_GRIPPER_SERVO_ENABLED AP_GRIPPER_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AP_GRIPPER_EPM_ENABLED
|
|
|
|
#define AP_GRIPPER_EPM_ENABLED AP_GRIPPER_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|