2020-05-31 08:43:28 -03:00
|
|
|
/*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
|
|
|
|
#if HAL_MAX_CAN_PROTOCOL_DRIVERS
|
|
|
|
#include "AP_CANManager.h"
|
|
|
|
#include <AP_Vehicle/AP_Vehicle.h>
|
|
|
|
|
|
|
|
#include <AP_UAVCAN/AP_UAVCAN.h>
|
|
|
|
#include <AP_ToshibaCAN/AP_ToshibaCAN.h>
|
|
|
|
#include <AP_PiccoloCAN/AP_PiccoloCAN.h>
|
|
|
|
#include "AP_CANTester.h"
|
|
|
|
#include <AP_KDECAN/AP_KDECAN.h>
|
|
|
|
|
|
|
|
|
|
|
|
// table of user settable CAN bus parameters
|
|
|
|
const AP_Param::GroupInfo AP_CANManager::CANDriver_Params::var_info[] = {
|
|
|
|
|
|
|
|
// @Param: PROTOCOL
|
|
|
|
// @DisplayName: Enable use of specific protocol over virtual driver
|
|
|
|
// @Description: Enabling this option starts selected protocol that will use this virtual driver
|
|
|
|
// @Values{Copter,Plane,Sub}: 0:Disabled,1:UAVCAN,2:KDECAN,3:ToshibaCAN,4:PiccoloCAN,5:CANTester
|
2020-12-31 20:09:54 -04:00
|
|
|
// @Values: 0:Disabled,1:UAVCAN,3:ToshibaCAN,4:PiccoloCAN,5:CANTester,6:EFI_NWPMU,7:USD1
|
2020-05-31 08:43:28 -03:00
|
|
|
// @User: Advanced
|
|
|
|
// @RebootRequired: True
|
|
|
|
AP_GROUPINFO("PROTOCOL", 1, AP_CANManager::CANDriver_Params, _driver_type, AP_CANManager::Driver_Type_UAVCAN),
|
|
|
|
|
|
|
|
// @Group: UC_
|
|
|
|
// @Path: ../AP_UAVCAN/AP_UAVCAN.cpp
|
|
|
|
AP_SUBGROUPPTR(_uavcan, "UC_", 2, AP_CANManager::CANDriver_Params, AP_UAVCAN),
|
|
|
|
|
|
|
|
#if (APM_BUILD_TYPE(APM_BUILD_ArduCopter) || APM_BUILD_TYPE(APM_BUILD_ArduPlane) || APM_BUILD_TYPE(APM_BUILD_ArduSub))
|
|
|
|
// @Group: KDE_
|
|
|
|
// @Path: ../AP_KDECAN/AP_KDECAN.cpp
|
|
|
|
AP_SUBGROUPPTR(_kdecan, "KDE_", 3, AP_CANManager::CANDriver_Params, AP_KDECAN),
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAL_NUM_CAN_IFACES > 1 && !HAL_MINIMIZE_FEATURES
|
|
|
|
// @Group: TST_
|
|
|
|
// @Path: ../AP_CANManager/AP_CANTester.cpp
|
|
|
|
AP_SUBGROUPPTR(_testcan, "TST_", 4, AP_CANManager::CANDriver_Params, CANTester),
|
|
|
|
#endif
|
|
|
|
|
2020-09-02 21:56:22 -03:00
|
|
|
#if HAL_PICCOLO_CAN_ENABLE
|
2020-09-02 00:52:19 -03:00
|
|
|
// @Group: PC_
|
|
|
|
// @Path: ../AP_PiccoloCAN/AP_PiccoloCAN.cpp
|
2020-09-02 04:16:31 -03:00
|
|
|
AP_SUBGROUPPTR(_piccolocan, "PC_", 5, AP_CANManager::CANDriver_Params, AP_PiccoloCAN),
|
2020-09-02 00:52:19 -03:00
|
|
|
#endif
|
|
|
|
|
2020-05-31 08:43:28 -03:00
|
|
|
AP_GROUPEND
|
|
|
|
};
|
|
|
|
#endif
|